UNPKG

@ayonli/jsext

Version:

A JavaScript extension package for building strong and modern applications.

7 lines (6 loc) 365 B
import hash, { type DataSource, adler32, crc32, hmac, sha1, sha256, sha512 } from "../hash/web.ts"; export type { DataSource }; export default hash; export { adler32, crc32, hmac, sha1, sha256, sha512 }; export declare function md5(data: DataSource): Promise<ArrayBuffer>; export declare function md5(data: DataSource, encoding: "hex" | "base64"): Promise<string>;