Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2022-01-19 21:12:13 +0300
committerFilip Skokan <panva.ip@gmail.com>2022-01-22 17:27:31 +0300
commit5aa401050388ecacc2d009f7c504b83bb3dad324 (patch)
tree8a71a76495b46ce9aa0fbebaa8c84aba45eb4119 /doc/api/crypto.md
parentb8de7aa4c2731883121bd7dcd19ec116f685eaa0 (diff)
crypto: remove wildcard options for checkEmail
Wildcard options do not affect X509_check_email. Refs: https://github.com/openssl/openssl/pull/17536 Refs: https://github.com/nodejs/node/pull/41571 PR-URL: https://github.com/nodejs/node/pull/41599 Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Diffstat (limited to 'doc/api/crypto.md')
-rw-r--r--doc/api/crypto.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index 6db38b80fcb..c4d1860ccb6 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -2473,6 +2473,11 @@ added: v15.6.0
added: v15.6.0
changes:
- version: REPLACEME
+ pr-url: https://github.com/nodejs/node/pull/41599
+ description: The `wildcards`, `partialWildcards`, `multiLabelWildcards`, and
+ `singleLabelSubdomains` options have been removed since they
+ had no effect.
+ - version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/41569
description: The subject option can now be set to `'default'`.
-->
@@ -2481,10 +2486,6 @@ changes:
* `options` {Object}
* `subject` {string} `'default'`, `'always'`, or `'never'`.
**Default:** `'always'`.
- * `wildcards` {boolean} **Default:** `true`.
- * `partialWildcards` {boolean} **Default:** `true`.
- * `multiLabelWildcards` {boolean} **Default:** `false`.
- * `singleLabelSubdomains` {boolean} **Default:** `false`.
* Returns: {string|undefined} Returns `email` if the certificate matches,
`undefined` if it does not.