PyMOTW: hashlib
Originally posted
· 1 min read
The hashlib
module deprecates the separate md5
and sha
modules and makes their API consistent. To work with a specific hash algorithm, use the appropriate constructor function to create a hash object. Then you can use the same API to interact with the hash no matter what algorithm is being used.