sha1.d.ts 379 B

1234567891011
  1. /**
  2. * SHA1 (RFC 3174) legacy hash function.
  3. * @module
  4. * @deprecated
  5. */
  6. import { SHA1 as SHA1n, sha1 as sha1n } from './legacy.ts';
  7. /** @deprecated Use import from `noble/hashes/legacy` module */
  8. export declare const SHA1: typeof SHA1n;
  9. /** @deprecated Use import from `noble/hashes/legacy` module */
  10. export declare const sha1: typeof sha1n;
  11. //# sourceMappingURL=sha1.d.ts.map