Expand description

Code related to SHA_1

Functions

Get the digest of the buffer

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

Get the hex string of the digest

example
const hash = SHA_1.hexify(digest);