import argon2 from 'argon2'; import { deserialize } from '@phc/format'; /** * Checks if `password` matches the hash. */ export function isPasswordValid( password: string, hash: string ): Promise { return argon2.verify(hash, password); } /** * Hashes a password. */ export async function hashPassword(password: string): Promise { return argon2.hash(password); } /** * Checks if the password hash is valid. * This only checks if the hash is a valid PHC formatted string using argon2. */ export function isValidPasswordHash(hash: string): boolean { try { const obj = deserialize(hash); if (obj.id !== 'argon2i' && obj.id !== 'argon2d' && obj.id !== 'argon2id') { return false; } return true; } catch { return false; } }