(a: number, count: number)
| 351 | |
| 352 | // Rotate a 32b number left `count` position |
| 353 | function rol32(a: number, count: number): number { |
| 354 | return (a << count) | (a >>> (32 - count)); |
| 355 | } |
| 356 | |
| 357 | function bytesToWords32(bytes: Byte[], endian: Endian): number[] { |
| 358 | const size = (bytes.length + 3) >>> 2; |
no outgoing calls
no test coverage detected
searching dependent graphs…