blake2b.js 424 B

1234567891011
  1. /**
  2. * Blake2b hash function. Focuses on 64-bit platforms, but in JS speed different from Blake2s is negligible.
  3. * @module
  4. * @deprecated
  5. */
  6. import { BLAKE2b as B2B, blake2b as b2b } from "./blake2.js";
  7. /** @deprecated Use import from `noble/hashes/blake2` module */
  8. export const BLAKE2b = B2B;
  9. /** @deprecated Use import from `noble/hashes/blake2` module */
  10. export const blake2b = b2b;
  11. //# sourceMappingURL=blake2b.js.map