Spaces:
Runtime error
Runtime error
| import bcrypt from "bcryptjs"; | |
| export async function hashPassword(password: string) { | |
| return bcrypt.hash(password, 12); | |
| } | |
| export async function verifyPassword(password: string, passwordHash: string) { | |
| return bcrypt.compare(password, passwordHash); | |
| } | |