Tagged Questions

1
vote
3answers
944 views

Difference in SHA512 between python hashlib and sha512sum tool

I am getting different message digests from the linux 'sha512sum' tool and the python hashlib library. Here is what I get on my Ubuntu 8.10: $ echo test | sha512sum ...
0
votes
3answers
259 views

Is it an MD5 digest in this Python script?

I am trying to understand this simple hashlib code in Python that has been given to me the other day on Stackoverflow: import hashlib m = hashlib.md5() m.update("Nobody inspects") m.update(" the ...