burdy
Version:
Open Source Headless Platform
6 lines (5 loc) • 325 B
TypeScript
declare const hash: (string: any, rounds?: any) => Promise<string>;
declare const hashSync: (string: any, rounds?: any) => string;
declare const compare: (string: any, hashString: any) => Promise<boolean>;
declare const compareSync: (string: any, hashString: any) => boolean;
export { hash, compare, hashSync, compareSync };