(cipher, data = Buffer.alloc(16))
| 32 | const fixtures = require('../common/fixtures'); |
| 33 | |
| 34 | function updateFinal(cipher, data = Buffer.alloc(16)) { |
| 35 | return Buffer.concat([cipher.update(data), cipher.final()]); |
| 36 | } |
| 37 | |
| 38 | { |
| 39 | const secret = createSecretKey(Buffer.alloc(16)); |
no test coverage detected
searching dependent graphs…