Searched refs:Cipheriv (Results 1 - 3 of 3) sorted by relevance
/third_party/node/lib/internal/crypto/ |
H A D | cipher.js | 240 // The Cipheriv class is part of the legacy Node.js crypto API. It exposes 242 // the Cipheriv class is defined using the legacy function syntax rather than 245 function Cipheriv(cipher, key, iv, options) { function 246 if (!(this instanceof Cipheriv)) 247 return new Cipheriv(cipher, key, iv, options); 258 if (constructor === Cipheriv) { 266 ObjectSetPrototypeOf(Cipheriv.prototype, LazyTransform.prototype); 267 ObjectSetPrototypeOf(Cipheriv, LazyTransform); 268 addCipherPrototypeFunctions(Cipheriv); 331 Cipheriv, [all...] |
/third_party/node/test/parallel/ |
H A D | test-crypto-cipheriv-decipheriv.js | 82 const Cipheriv = crypto.Cipheriv; 86 const instance = Cipheriv('des-ede3-cbc', key, iv); 87 assert(instance instanceof Cipheriv, 'Cipheriv is expected to return a new ' +
|
/third_party/node/lib/ |
H A D | crypto.js | 91 Cipheriv, 141 return new Cipheriv(cipher, key, iv, options); 229 Cipheriv,
|
Completed in 2 milliseconds