UNPKG

@ayonli/jsext

Version:

A JavaScript extension package for building strong and modern applications.

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