Searched refs:createCipher (Results 1 – 16 of 16) sorted by relevance
/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), 107 () => crypto.createCipher('aes-256-cbc', 'secret').update(null), 116 () => crypto.createCipher('aes-256-cbc', 'secret').setAAD(null), 162 const c = crypto.createCipher('aes-256-cbc', 'secret'); 170 const c = crypto.createCipher('aes-256-cbc', 'secret'); 183 const c = crypto.createCipher('aes192', '0123456789abcdef'); [all …]
|
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 | 164 assert.throws(() => { crypto.createCipher(test.algo, test.password); }, 167 const encrypt = crypto.createCipher(test.algo, test.password, options); 352 crypto.createCipher('aes-256-ccm', 'bad password', { authTagLength }); 394 crypto.createCipher('aes-256-ccm', 'bad password', { authTagLength }); 427 crypto.createCipher(`aes-256-${mode}`, 'very bad password');
|
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 | 117 function createCipher(cipher, password, options) { function 228 createCipher: { property 230 value: deprecate(createCipher,
|
/third_party/node/lib/internal/crypto/ |
D | cipher.js | 110 function createCipher(cipher, password, options, decipher) { function 128 createCipher.call(this, cipher, password, options, true); 252 createCipher.call(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 | 1976 ### DEP0106: `crypto.createCipher` and `crypto.createDecipher` 1989 Using [`crypto.createCipher()`][] and [`crypto.createDecipher()`][] should be 2702 [`crypto.createCipher()`]: crypto.md#crypto_crypto_createcipher_algorithm_password_options
|
D | crypto.md | 191 The [`crypto.createCipher()`][] or [`crypto.createCipheriv()`][] methods are 1638 ### `crypto.createCipher(algorithm, password[, options])` 1678 The implementation of `crypto.createCipher()` derives keys using the OpenSSL 1689 (e.g. CTR, GCM, or CCM) in `crypto.createCipher()`. A warning is emitted when 3616 [`crypto.createCipher()`]: #crypto_crypto_createcipher_algorithm_password_options
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V10.md | 2539 …nodejs/node/commit/6c7733f58a)] - **doc**: update recommendations for createCipher (Tobias Nießen)… 3073 …hub.com/nodejs/node/commit/9981220e2a)] - **crypto**: fix behavior of createCipher in wrap mode (T… 3470 * [[`72029b8cc7`](https://github.com/nodejs/node/commit/72029b8cc7)] - **crypto**: add createCipher… 3867 …* The `crypto.createCipher()` and `crypto.createDecipher()` methods have been deprecated. Please u… 3928 * The `crypto.createCipher()` and `crypto.createDecipher()` methods have been deprecated in documen… 3992 …mmit/81f88e30dd)] - **(SEMVER-MAJOR)** **crypto**: doc-only deprecate createCipher/Decipher (Tobia…
|
D | CHANGELOG_V5.md | 1287 …thub.com/nodejs/node/commit/def681a07e)] - **crypto**: disable crypto.createCipher in FIPS mode (S…
|
D | CHANGELOG_V8.md | 2954 …github.com/nodejs/node/commit/78a71aa123)] - **crypto**: fix error of createCipher in wrap mode (S… 2955 …s/node/commit/41bf40e209)] - **crypto**: warn if counter mode used in createCipher (Shigeki Ohtsu)…
|
D | CHANGELOG_V6.md | 925 …github.com/nodejs/node/commit/f2cafff9b0)] - **crypto**: fix error of createCipher in wrap mode (S… 926 …s/node/commit/7115079c4f)] - **crypto**: warn if counter mode used in createCipher (Shigeki Ohtsu)…
|
D | CHANGELOG_V11.md | 2556 …nodejs/node/commit/933d8eb689)] - **(SEMVER-MAJOR)** **crypto**: move createCipher to runtime depr…
|
D | CHANGELOG_V4.md | 2536 …thub.com/nodejs/node/commit/b7c3fb7f75)] - **crypto**: disable crypto.createCipher in FIPS mode (S…
|