import bcrypt from 'bcryptjs'; const SALT_ROUNDS = 12; export async function hashPassword(password: string): Promise { return bcrypt.hash(password, SALT_ROUNDS); } export async function verifyPassword( password: string, hash: string ): Promise { return bcrypt.compare(password, hash); }