(x, n)
| 8194 | } |
| 8195 | |
| 8196 | function ROTL(x, n) { |
| 8197 | return x << n | x >>> 32 - n; |
| 8198 | } |
| 8199 | |
| 8200 | function sha1(bytes) { |
| 8201 | const K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6]; |
no outgoing calls
no test coverage detected
searching dependent graphs…