Module Digest.BLAKE256Source
BLAKE256 is the BLAKE2b hash function producing 256-bit (32-byte) digests. It is cryptographically secure, and the digests are large enough to thwart brute-force attacks.
The type of digests.
The length of digests, in bytes.
Compare two digests, with the same specification as Stdlib.compare.
Test two digests for equality.
Return the digest of the given string.
Return the digest of the given byte sequence.
substring s ofs len returns the digest of the substring of s starting at index ofs and containing len characters.
subbytes s ofs len returns the digest of the subsequence of s starting at index ofs and containing len bytes.
Read characters from the channel and return their digest. See Digest.channel for the full specification.
Return the digest of the file whose name is given.
Write a digest on the given output channel.
Read a digest from the given input channel.
Return the printable hexadecimal representation of the given digest.
Convert a hexadecimal representation back into the corresponding digest.