(s: HashInput, format?: BinaryToTextEncoding)
| 68 | * @public |
| 69 | */ |
| 70 | export function sha256(s: HashInput, format?: BinaryToTextEncoding): string { |
| 71 | return hash('sha256', s, format); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * sha512 hash |
nothing calls this directly
no test coverage detected
searching dependent graphs…