(input: string)
| 6 | * caller only needs to verify equality without ever reversing the hash. |
| 7 | */ |
| 8 | export function sha256Hex(input: string): string { |
| 9 | return createHash('sha256').update(input, 'utf8').digest('hex') |
| 10 | } |
no outgoing calls
no test coverage detected