Home
last modified time | relevance | path

Searched refs:createCipher (Results 1 – 16 of 16) sorted by relevance

/third_party/node/test/parallel/
Dtest-crypto-cipher-decipher.js25 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 …]
Dtest-process-emit-warning-from-native.js24 crypto.createCipher('aes-256-gcm', key);
33 crypto.createCipher('aes-256-gcm', key);
43 crypto.createCipher('aes-256-gcm', key);
Dtest-crypto-authenticated.js164 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');
Dtest-crypto-binary-default.js465 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/
Dcrypto.js117 function createCipher(cipher, password, options) { function
228 createCipher: { property
230 value: deprecate(createCipher,
/third_party/node/lib/internal/crypto/
Dcipher.js110 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/
Dcipher-stream.js36 const alice_cipher = crypto.createCipher(cipher, alice_secret);
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_security_cryptoFramework.js717 createCipher: function (...args) { method
/third_party/node/doc/api/
Ddeprecations.md1976 ### 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
Dcrypto.md191 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/
DCHANGELOG_V10.md2539 …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…
DCHANGELOG_V5.md1287 …thub.com/nodejs/node/commit/def681a07e)] - **crypto**: disable crypto.createCipher in FIPS mode (S…
DCHANGELOG_V8.md2954 …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)…
DCHANGELOG_V6.md925 …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)…
DCHANGELOG_V11.md2556 …nodejs/node/commit/933d8eb689)] - **(SEMVER-MAJOR)** **crypto**: move createCipher to runtime depr…
DCHANGELOG_V4.md2536 …thub.com/nodejs/node/commit/b7c3fb7f75)] - **crypto**: disable crypto.createCipher in FIPS mode (S…