(value1: string, value2: string)
| 35 | } |
| 36 | |
| 37 | export function compareHash(value1: string, value2: string) { |
| 38 | return bcrypt.compareSync(value1, value2) |
| 39 | } |
| 40 | |
| 41 | export async function encrypt(value: string) { |
| 42 | const encryptionKey = await getEncryptionKey() |
no outgoing calls
no test coverage detected