/third_party/node/test/parallel/ |
D | test-crypto-cipher-decipher.js | 25 const cipher = crypto.createCipher('aes192', key); 43 const cStream = crypto.createCipher('aes192', key); 62 const cipher = crypto.createCipher('aes256', key); 89 () => crypto.createCipher(null), 98 () => crypto.createCipher('aes-256-cbc', null), 105 () => crypto.createCipher('aes-256-cbc', 'secret').update(null), 112 () => crypto.createCipher('aes-256-cbc', 'secret').setAAD(null), 152 const c = crypto.createCipher('aes-256-cbc', 'secret'); 160 const c = crypto.createCipher('aes-256-cbc', 'secret'); 173 const c = crypto.createCipher('aes192', '0123456789abcdef'); [all …]
|
D | test-crypto-encoding-validation-error.js | 11 const createCipher = () => { function 16 const cipher = createCipher(); 26 const cipher = createCipher(); 36 const cipher = createCipher(); 46 const cipher = createCipher();
|
D | test-process-emit-warning-from-native.js | 24 crypto.createCipher('aes-256-gcm', key); 33 crypto.createCipher('aes-256-gcm', key); 43 crypto.createCipher('aes-256-gcm', key);
|
D | test-crypto-authenticated.js | 165 assert.throws(() => { crypto.createCipher(test.algo, test.password); }, 168 const encrypt = crypto.createCipher(test.algo, test.password, options); 353 crypto.createCipher('aes-256-ccm', 'bad password', { authTagLength }); 395 crypto.createCipher('aes-256-ccm', 'bad password', { authTagLength }); 428 crypto.createCipher(`aes-256-${mode}`, 'very bad password'); 676 crypto.createCipher(algo, 'foo', opts),
|
D | test-crypto-binary-default.js | 465 const cipher = crypto.createCipher('aes192', key); 488 const cipher = crypto.createCipher('aes256', key); 545 const cipher = crypto.createCipher('id-aes128-wrap', key);
|
/third_party/node/lib/ |
D | crypto.js | 136 function createCipher(cipher, password, options) { function 331 createCipher: { property 334 value: deprecate(createCipher,
|
/third_party/node/lib/internal/crypto/ |
D | cipher.js | 129 function createCipher(cipher, password, options, decipher) { function 153 ReflectApply(createCipher, this, [cipher, password, options, true]); 279 ReflectApply(createCipher, this, [cipher, password, options, false]);
|
/third_party/node/benchmark/crypto/ |
D | cipher-stream.js | 36 const alice_cipher = crypto.createCipher(cipher, alice_secret);
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_security_cryptoFramework.js | 717 createCipher: function (...args) { method
|
/third_party/node/doc/api/ |
D | deprecations.md | 2103 ### DEP0106: `crypto.createCipher` and `crypto.createDecipher` 2117 Using [`crypto.createCipher()`][] and [`crypto.createDecipher()`][] must be 3383 [`crypto.createCipher()`]: crypto.md#cryptocreatecipheralgorithm-password-options
|
D | crypto.md | 320 The [`crypto.createCipher()`][] or [`crypto.createCipheriv()`][] methods are 2973 ### `crypto.createCipher(algorithm, password[, options])` 3026 The implementation of `crypto.createCipher()` derives keys using the OpenSSL 3037 (e.g. CTR, GCM, or CCM) in `crypto.createCipher()`. A warning is emitted when 6142 [`crypto.createCipher()`]: #cryptocreatecipheralgorithm-password-options
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V10.md | 2808 …nodejs/node/commit/6c7733f58a)] - **doc**: update recommendations for createCipher (Tobias Nießen)… 3346 …hub.com/nodejs/node/commit/9981220e2a)] - **crypto**: fix behavior of createCipher in wrap mode (T… 3748 …(https://github.com/nodejs/node/commit/72029b8cc7)] - **crypto**: add createCipher/WithIV function… 4147 …* The `crypto.createCipher()` and `crypto.createDecipher()` methods have been deprecated. Please u… 4208 * The `crypto.createCipher()` and `crypto.createDecipher()` methods have been deprecated in documen… 4272 …mmit/81f88e30dd)] - **(SEMVER-MAJOR)** **crypto**: doc-only deprecate createCipher/Decipher (Tobia…
|
D | CHANGELOG_V5.md | 1305 …thub.com/nodejs/node/commit/def681a07e)] - **crypto**: disable crypto.createCipher in FIPS mode (S…
|
D | CHANGELOG_V8.md | 2982 …github.com/nodejs/node/commit/78a71aa123)] - **crypto**: fix error of createCipher in wrap mode (S… 2983 …s/node/commit/41bf40e209)] - **crypto**: warn if counter mode used in createCipher (Shigeki Ohtsu)…
|
D | CHANGELOG_V6.md | 942 …github.com/nodejs/node/commit/f2cafff9b0)] - **crypto**: fix error of createCipher in wrap mode (S… 943 …s/node/commit/7115079c4f)] - **crypto**: warn if counter mode used in createCipher (Shigeki Ohtsu)…
|
D | CHANGELOG_V4.md | 2569 …thub.com/nodejs/node/commit/b7c3fb7f75)] - **crypto**: disable crypto.createCipher in FIPS mode (S…
|
D | CHANGELOG_V11.md | 2575 …nodejs/node/commit/933d8eb689)] - **(SEMVER-MAJOR)** **crypto**: move createCipher to runtime depr…
|
D | CHANGELOG_V18.md | 3088 …/github.com/nodejs/node/commit/a3360b1f4f)] - **doc**: emphasize that createCipher is never secure…
|