Expand description

Code related to SHA_512

Functions

Get the digest of the buffer

example
const buffer = new TextEncoder().encode("a file");
const digest = SHA_512.digest(buffer);

Get the hex string of the digest

example
const hash = SHA_512.hexify(digest);