Searched refs:Decipheriv (Results 1 – 4 of 4) sorted by relevance
/third_party/node/lib/internal/crypto/ |
D | cipher.js | 291 function Decipheriv(cipher, key, iv, options) { class 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, property
|
/third_party/node/test/parallel/ |
D | test-crypto-cipheriv-decipheriv.js | 115 const Decipheriv = crypto.Decipheriv; constant 119 const instance = Decipheriv('des-ede3-cbc', key, iv); 120 assert(instance instanceof Decipheriv, 'Decipheriv expected to return a new' +
|
/third_party/node/lib/ |
D | crypto.js | 93 Decipheriv, 149 return new Decipheriv(cipher, key, iv, options); 231 Decipheriv, property
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V10.md | 4965 …node/commit/6707903fae)] - **test**: improve coverage for Cipheriv and Decipheriv (Leko) [#17458](…
|