Home
last modified time | relevance | path

Searched refs:Decipheriv (Results 1 - 3 of 3) sorted by relevance

/third_party/node/lib/internal/crypto/
H A Dcipher.js286 // The Decipheriv class is part of the legacy Node.js crypto API. It exposes
288 // the Decipheriv class is defined using the legacy function syntax rather than
291 function Decipheriv(cipher, key, iv, options) { function
292 if (!(this instanceof Decipheriv))
293 return new Decipheriv(cipher, key, iv, options);
298 ObjectSetPrototypeOf(Decipheriv.prototype, LazyTransform.prototype);
299 ObjectSetPrototypeOf(Decipheriv, LazyTransform);
300 addCipherPrototypeFunctions(Decipheriv);
333 Decipheriv,
/third_party/node/test/parallel/
H A Dtest-crypto-cipheriv-decipheriv.js115 const Decipheriv = crypto.Decipheriv;
119 const instance = Decipheriv('des-ede3-cbc', key, iv);
120 assert(instance instanceof Decipheriv, 'Decipheriv expected to return a new' +
/third_party/node/lib/
H A Dcrypto.js93 Decipheriv,
149 return new Decipheriv(cipher, key, iv, options);
231 Decipheriv,

Completed in 2 milliseconds