blake2b.d.ts 454 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.ts';
  7. /** @deprecated Use import from `noble/hashes/blake2` module */
  8. export declare const BLAKE2b: typeof B2B;
  9. /** @deprecated Use import from `noble/hashes/blake2` module */
  10. export declare const blake2b: typeof b2b;
  11. //# sourceMappingURL=blake2b.d.ts.map