(s: HashInput, format?: BinaryToTextEncoding)
| 80 | * @public |
| 81 | */ |
| 82 | export function sha512(s: HashInput, format?: BinaryToTextEncoding): string { |
| 83 | return hash('sha512', s, format); |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * HMAC algorithm. |
nothing calls this directly
no test coverage detected
searching dependent graphs…