function md5
Creates a new MD5 hash object.
Call
update(data) to feed bytes or strings into the hash, then
digest() for raw bytes or hexdigest() for the hex-encoded string.
Examples
function sha1
Creates a new SHA-1 hash object.
Call
update(data) to feed bytes or strings into the hash, then
digest() for raw bytes or hexdigest() for the hex-encoded string.
Examples
function sha224
Creates a new SHA-224 hash object.
Call
update(data) to feed bytes or strings into the hash, then
digest() for raw bytes or hexdigest() for the hex-encoded string.
Examples
function sha256
Creates a new SHA-256 hash object.
Call
update(data) to feed bytes or strings into the hash, then
digest() for raw bytes or hexdigest() for the hex-encoded string.
Examples
function sha384
Creates a new SHA-384 hash object.
Call
update(data) to feed bytes or strings into the hash, then
digest() for raw bytes or hexdigest() for the hex-encoded string.
Examples
function sha512
Creates a new SHA-512 hash object.
Call
update(data) to feed bytes or strings into the hash, then
digest() for raw bytes or hexdigest() for the hex-encoded string.
Examples
function blake2b
Creates a new BLAKE2b-512 hash object.
Call
update(data) to feed bytes or strings into the hash, then
digest() for raw bytes or hexdigest() for the hex-encoded string.
Examples
function blake2s
Creates a new BLAKE2s-256 hash object.
Call
update(data) to feed bytes or strings into the hash, then
digest() for raw bytes or hexdigest() for the hex-encoded string.

