Skip to content

Commit f758e89

Browse files
committed
crypto: remove deprecated legacy API
The `crypto.Credentials` legacy API has been Runtime deprecated since v0.11.13 and users had been adviced to use `tls.SecureContext` instead. Fixes: #20793
1 parent 0300f7c commit f758e89

File tree

5 files changed

+4
-66
lines changed

5 files changed

+4
-66
lines changed

doc/api/crypto.md

-20
Original file line numberDiff line numberDiff line change
@@ -1416,25 +1416,6 @@ something has to be unpredictable and unique, but does not have to be secret;
14161416
it is important to remember that an attacker must not be able to predict ahead
14171417
of time what a given IV will be.
14181418

1419-
### crypto.createCredentials(details)
1420-
<!-- YAML
1421-
added: v0.1.92
1422-
deprecated: v0.11.13
1423-
-->
1424-
1425-
> Stability: 0 - Deprecated: Use [`tls.createSecureContext()`][] instead.
1426-
1427-
- `details` {Object} Identical to [`tls.createSecureContext()`][].
1428-
- Returns: {tls.SecureContext}
1429-
1430-
The `crypto.createCredentials()` method is a deprecated function for creating
1431-
and returning a `tls.SecureContext`. It should not be used. Replace it with
1432-
[`tls.createSecureContext()`][] which has the exact same arguments and return
1433-
value.
1434-
1435-
Returns a `tls.SecureContext`, as-if [`tls.createSecureContext()`][] had been
1436-
called.
1437-
14381419
### crypto.createDecipher(algorithm, password[, options])
14391420
<!-- YAML
14401421
added: v0.1.94
@@ -2667,7 +2648,6 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
26672648
[`sign.update()`]: #crypto_sign_update_data_inputencoding
26682649
[`stream.transform` options]: stream.html#stream_new_stream_transform_options
26692650
[`stream.Writable` options]: stream.html#stream_constructor_new_stream_writable_options
2670-
[`tls.createSecureContext()`]: tls.html#tls_tls_createsecurecontext_options
26712651
[`verify.update()`]: #crypto_verify_update_data_inputencoding
26722652
[`verify.verify()`]: #crypto_verify_verify_object_signature_signatureformat
26732653
[AEAD algorithms]: https://en.wikipedia.org/wiki/Authenticated_encryption

doc/api/deprecations.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -142,17 +142,17 @@ undefined `digest` will throw a `TypeError`.
142142
<a id="DEP0010"></a>
143143
### DEP0010: crypto.createCredentials
144144

145-
Type: Runtime
145+
Type: End-of-Life
146146

147-
The [`crypto.createCredentials()`][] API is deprecated. Please use
147+
The `crypto.createCredentials()` API was removed. Please use
148148
[`tls.createSecureContext()`][] instead.
149149

150150
<a id="DEP0011"></a>
151151
### DEP0011: crypto.Credentials
152152

153-
Type: Runtime
153+
Type: End-of-Life
154154

155-
The `crypto.Credentials` class is deprecated. Please use [`tls.SecureContext`][]
155+
The `crypto.Credentials` class was removed. Please use [`tls.SecureContext`][]
156156
instead.
157157

158158
<a id="DEP0012"></a>
@@ -1026,7 +1026,6 @@ deprecated and support will be removed in the future.
10261026
[`console.log()`]: console.html#console_console_log_data_args
10271027
[`crypto.createCipher()`]: crypto.html#crypto_crypto_createcipher_algorithm_password_options
10281028
[`crypto.createCipheriv()`]: crypto.html#crypto_crypto_createcipheriv_algorithm_key_iv_options
1029-
[`crypto.createCredentials()`]: crypto.html#crypto_crypto_createcredentials_details
10301029
[`crypto.createDecipher()`]: crypto.html#crypto_crypto_createdecipher_algorithm_password_options
10311030
[`crypto.createDecipheriv()`]: crypto.html#crypto_crypto_createdecipheriv_algorithm_key_iv_options
10321031
[`crypto.DEFAULT_ENCODING`]: crypto.html#crypto_crypto_default_encoding

lib/crypto.js

-18
Original file line numberDiff line numberDiff line change
@@ -222,23 +222,5 @@ Object.defineProperties(exports, {
222222
configurable: false,
223223
enumerable: true,
224224
value: constants
225-
},
226-
227-
// Legacy API
228-
createCredentials: {
229-
configurable: true,
230-
enumerable: true,
231-
get: deprecate(() => {
232-
return require('tls').createSecureContext;
233-
}, 'crypto.createCredentials is deprecated. ' +
234-
'Use tls.createSecureContext instead.', 'DEP0010')
235-
},
236-
Credentials: {
237-
configurable: true,
238-
enumerable: true,
239-
get: deprecate(function() {
240-
return require('tls').SecureContext;
241-
}, 'crypto.Credentials is deprecated. ' +
242-
'Use tls.SecureContext instead.', 'DEP0011')
243225
}
244226
});

test/parallel/test-crypto-classes.js

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ const TEST_CASES = {
1919
'DiffieHellman': [1024],
2020
'DiffieHellmanGroup': ['modp5'],
2121
'ECDH': ['prime256v1'],
22-
'Credentials': []
2322
};
2423

2524
if (!common.hasFipsCrypto) {

test/parallel/test-crypto-deprecated.js

-22
This file was deleted.

0 commit comments

Comments
 (0)