ethereum-cryptography
Version:
All the cryptographic primitives used in Ethereum
10 lines (9 loc) • 333 B
JavaScript
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 });
};