hash-wasm
Version:
Lightning fast hash functions for browsers and Node.js using hand-tuned WebAssembly binaries (MD4, MD5, SHA-1, SHA-2, SHA-3, Keccak, BLAKE2, BLAKE3, PBKDF2, Argon2, bcrypt, scrypt, Adler-32, CRC32, CRC32C, RIPEMD-160, HMAC, xxHash, SM3, Whirlpool)
31 lines (29 loc) • 792 B
text/typescript
export * from "./adler32";
export * from "./argon2";
export * from "./blake2b";
export * from "./blake2s";
export * from "./blake3";
export * from "./crc32";
export * from "./crc64";
export * from "./md4";
export * from "./md5";
export * from "./sha1";
export * from "./sha3";
export * from "./keccak";
export * from "./sha224";
export * from "./sha256";
export * from "./sha384";
export * from "./sha512";
export * from "./xxhash32";
export * from "./xxhash64";
export * from "./xxhash3";
export * from "./xxhash128";
export * from "./ripemd160";
export * from "./hmac";
export * from "./pbkdf2";
export * from "./scrypt";
export * from "./bcrypt";
export * from "./whirlpool";
export * from "./sm3";
export type { IDataType } from "./util";
export type { IHasher } from "./WASMInterface";