better-auth
Version:
The most comprehensive authentication framework for TypeScript.
12 lines • 312 B
text/typescript
//#region src/crypto/password.d.ts
declare const hashPassword: (password: string) => Promise<string>;
declare const verifyPassword: ({
hash,
password
}: {
hash: string;
password: string;
}) => Promise<boolean>;
//#endregion
export { hashPassword, verifyPassword };
//# sourceMappingURL=password.d.mts.map