mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
7 lines
217 B
TypeScript
7 lines
217 B
TypeScript
import argon2 from 'argon2';
|
|
|
|
export const hashPassword = async (password: string) => argon2.hash(password);
|
|
|
|
export const validatePassword = async (hash: string, password: string) =>
|
|
argon2.verify(hash, password);
|