(s: HashInput, format?: BinaryToTextEncoding)
| 56 | * @public |
| 57 | */ |
| 58 | export function sha1(s: HashInput, format?: BinaryToTextEncoding): string { |
| 59 | return hash('sha1', s, format); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * sha256 hash |
nothing calls this directly
no test coverage detected
searching dependent graphs…