10 lines
333 B
JavaScript
Raw Permalink Normal View History

2025-04-19 15:38:48 +08:00
import { blake2b as _blake2b } from "@noble/hashes/blake2b";
import { assertBytes } from "./utils.js";
export const blake2b = (msg, outputLength = 64) => {
assertBytes(msg);
if (outputLength <= 0 || outputLength > 64) {
throw Error("Invalid outputLength");
}
return _blake2b(msg, { dkLen: outputLength });
};