Searched refs:Decipher (Results 1 - 4 of 4) sorted by relevance
/third_party/node/lib/internal/crypto/ |
H A D | cipher.js | 270 // The Decipher class is part of the legacy Node.js crypto API. It exposes 272 // the Decipher class is defined using the legacy function syntax rather than 275 function Decipher(cipher, password, options) { function 276 if (!(this instanceof Decipher)) 277 return new Decipher(cipher, password, options); 282 ObjectSetPrototypeOf(Decipher.prototype, LazyTransform.prototype); 283 ObjectSetPrototypeOf(Decipher, LazyTransform); 284 addCipherPrototypeFunctions(Decipher); 332 Decipher,
|
/third_party/node/test/parallel/ |
H A D | test-crypto-cipher-decipher.js | 120 const Decipher = crypto.Decipher; 121 const instance = crypto.Decipher('aes-256-cbc', 'secret'); 122 assert(instance instanceof Decipher, 'Decipher is expected to return a new ' + 157 // Calling Cipher.final() or Decipher.final() twice should error but
|
H A D | test-crypto-classes.js | 26 TEST_CASES.Decipher = ['aes192', 'secret'];
|
/third_party/node/lib/ |
H A D | crypto.js | 92 Decipher, 145 return new Decipher(cipher, password, options); 230 Decipher,
|
Completed in 2 milliseconds