better-auth
Version:
The most comprehensive authentication framework for TypeScript.
9 lines • 352 B
text/typescript
import { hashPassword } from "@better-auth/utils/password";
//#region src/crypto/password.d.ts
declare const hashPassword$1: typeof hashPassword;
declare const verifyPassword$1: ({ hash, password }: {
hash: string;
password: string;
}) => Promise<boolean>;
//#endregion
export { hashPassword$1 as hashPassword, verifyPassword$1 as verifyPassword };