(out)
| 11 | } |
| 12 | |
| 13 | function fromArray (out) { |
| 14 | var buf = Buffer.allocUnsafe(16) |
| 15 | buf.writeUInt32BE(out[0] >>> 0, 0) |
| 16 | buf.writeUInt32BE(out[1] >>> 0, 4) |
| 17 | buf.writeUInt32BE(out[2] >>> 0, 8) |
| 18 | buf.writeUInt32BE(out[3] >>> 0, 12) |
| 19 | return buf |
| 20 | } |
| 21 | |
| 22 | function GHASH (key) { |
| 23 | this.h = key |
no outgoing calls
no test coverage detected
searching dependent graphs…