( hash: string, password: string, )
| 12 | } |
| 13 | |
| 14 | export async function verifyPasswordHash( |
| 15 | hash: string, |
| 16 | password: string, |
| 17 | ): Promise<boolean> { |
| 18 | return await verify(hash, password); |
| 19 | } |
| 20 | |
| 21 | export async function verifyPasswordStrength( |
| 22 | password: string, |
no outgoing calls
no test coverage detected