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

Function Decipheriv

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

Source from the content-addressed store, hash-verified

243// the Decipheriv class is defined using the legacy function syntax rather than
244// ES6 classes.
245function Decipheriv(cipher, key, iv, options) {
246 if (!(this instanceof Decipheriv))
247 return new Decipheriv(cipher, key, iv, options);
248
249 FunctionPrototypeCall(createCipherWithIV, this, cipher, key, options, false, iv);
250}
251
252ObjectSetPrototypeOf(Decipheriv.prototype, LazyTransform.prototype);
253ObjectSetPrototypeOf(Decipheriv, LazyTransform);

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…