Expand description

Code related to SHA_384

Functions

Get the digest of the buffer

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

Get the hex string of the digest

example
const hash = SHA_384.hexify(digest);