Searched refs:Decipheriv (Results 1 – 4 of 4) sorted by relevance
/third_party/node/lib/internal/crypto/ |
D | cipher.js | 260 function Decipheriv(cipher, key, iv, options) { class 261 if (!(this instanceof Decipheriv)) 262 return new Decipheriv(cipher, key, iv, options); 267 ObjectSetPrototypeOf(Decipheriv.prototype, LazyTransform.prototype); 268 ObjectSetPrototypeOf(Decipheriv, LazyTransform); 269 addCipherPrototypeFunctions(Decipheriv); 275 Decipheriv, property
|
/third_party/node/test/parallel/ |
D | test-crypto-cipheriv-decipheriv.js | 119 const Decipheriv = crypto.Decipheriv; constant 123 const instance = Decipheriv('des-ede3-cbc', key, iv); 124 assert(instance instanceof Decipheriv, 'Decipheriv expected to return a new' +
|
/third_party/node/lib/ |
D | crypto.js | 85 Decipheriv, 130 return new Decipheriv(cipher, key, iv, options); 203 Decipheriv, property
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V10.md | 4685 …node/commit/6707903fae)] - **test**: improve coverage for Cipheriv and Decipheriv (Leko) [#17458](…
|