You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement the Digest module, which provides 256-bit message digests (aka hashes) based on the SHA-3-256 algorithm. This module is intended for use in uniquely identifying values. For example, the compiler will need to reliably distinguish between versions of source code files and API signatures. Unlike for uses of the Hash module, collisions for distinct inputs are unacceptable, safely assumed to never ever happen in practice.
The text was updated successfully, but these errors were encountered:
Implement the
Digest
module, which provides 256-bit message digests (aka hashes) based on the SHA-3-256 algorithm. This module is intended for use in uniquely identifying values. For example, the compiler will need to reliably distinguish between versions of source code files and API signatures. Unlike for uses of theHash
module, collisions for distinct inputs are unacceptable, safely assumed to never ever happen in practice.The text was updated successfully, but these errors were encountered: