/** * Hashing function; useful for crypto users, though not used by the rest of the package. * * @module */ import type * as types from "./types.js"; /** * Calculate Hash of a string * * @param input * @param sh_func - can be `"SHA-256"` or `"SHA-384"` * @result - the hash value in hexadecimal format. */ export declare function calculateHash(input: string, sh_func?: types.HashAlgorithm): Promise; //# sourceMappingURL=hash.d.ts.map