whirlpool-hash
Version:
Calculates [WHIRLPOOL (WHIRLPOOL-0, WHIRLPOOL-T)] hash
17 lines (10 loc) • 330 B
TypeScript
export class Whirlpool {
getHash(message: String): String;
}
export namespace encoders {
// function fromUtf(message: string): String
function toHex(message: string): string
function toBase64(input: string): string
function fromBase64(input: string): string
function fromUtf(input: string): string
}