mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
doc: deprecate hmac public constructor
PR-URL: https://github.com/nodejs/node/pull/51881 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Adrian Estrada <edsadr@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
This commit is contained in:
@@ -3588,6 +3588,21 @@ Type: Documentation-only
|
||||
Calling `fs.Stats` class directly with `Stats()` or `new Stats()` is
|
||||
deprecated due to being internals, not intended for public use.
|
||||
|
||||
### DEP0181: `Hmac` constructor
|
||||
|
||||
<!-- YAML
|
||||
changes:
|
||||
- version: REPLACEME
|
||||
pr-url: https://github.com/nodejs/node/pull/51881
|
||||
description: Documentation-only deprecation.
|
||||
-->
|
||||
|
||||
Type: Documentation-only
|
||||
|
||||
Calling `Hmac` class directly with `Hmac()` or `new Hmac()` is
|
||||
deprecated due to being internals, not intended for public use.
|
||||
Please use the [`crypto.createHmac()`][] method to create Hmac instances.
|
||||
|
||||
[NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf
|
||||
[RFC 6066]: https://tools.ietf.org/html/rfc6066#section-3
|
||||
[RFC 8247 Section 2.4]: https://www.rfc-editor.org/rfc/rfc8247#section-2.4
|
||||
@@ -3625,6 +3640,7 @@ deprecated due to being internals, not intended for public use.
|
||||
[`crypto.createCipheriv()`]: crypto.md#cryptocreatecipherivalgorithm-key-iv-options
|
||||
[`crypto.createDecipheriv()`]: crypto.md#cryptocreatedecipherivalgorithm-key-iv-options
|
||||
[`crypto.createHash()`]: crypto.md#cryptocreatehashalgorithm-options
|
||||
[`crypto.createHmac()`]: crypto.md#cryptocreatehmacalgorithm-key-options
|
||||
[`crypto.fips`]: crypto.md#cryptofips
|
||||
[`crypto.pbkdf2()`]: crypto.md#cryptopbkdf2password-salt-iterations-keylen-digest-callback
|
||||
[`crypto.randomBytes()`]: crypto.md#cryptorandombytessize-callback
|
||||
|
||||
Reference in New Issue
Block a user