(cipher, credential, options, isEncrypt, iv)
| 115 | } |
| 116 | |
| 117 | function createCipherBase(cipher, credential, options, isEncrypt, iv) { |
| 118 | const authTagLength = getUIntOption(options, 'authTagLength'); |
| 119 | this[kHandle] = new CipherBase(isEncrypt, cipher, credential, iv, authTagLength); |
| 120 | this._decoder = null; |
| 121 | |
| 122 | FunctionPrototypeCall(LazyTransform, this, options); |
| 123 | } |
| 124 | |
| 125 | function createCipherWithIV(cipher, key, options, isEncrypt, iv) { |
| 126 | validateString(cipher, 'cipher'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…