MCPcopy Index your code
hub / github.com/nodejs/node / Cipheriv

Function Cipheriv

lib/internal/crypto/cipher.js:216–221  ·  view source on GitHub ↗
(cipher, key, iv, options)

Source from the content-addressed store, hash-verified

214// ES6 classes.
215
216function Cipheriv(cipher, key, iv, options) {
217 if (!(this instanceof Cipheriv))
218 return new Cipheriv(cipher, key, iv, options);
219
220 FunctionPrototypeCall(createCipherWithIV, this, cipher, key, options, true, iv);
221}
222
223function addCipherPrototypeFunctions(constructor) {
224 constructor.prototype._transform = _transform;

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…