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

Function createCipheriv

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

Source from the content-addressed store, hash-verified

147}
148
149function createCipheriv(cipher, key, iv, options) {
150 return new Cipheriv(cipher, key, iv, options);
151}
152
153function createDecipheriv(cipher, key, iv, options) {
154 return new Decipheriv(cipher, key, iv, options);

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…