acme-client
Advanced tools
Comparing version 3.3.1 to 3.3.2
@@ -1,4 +0,6 @@ | ||
**Notice:** [On November 1st, 2020 Let's Encrypt will remove support for unauthenticated GETs from the v2 API](https://community.letsencrypt.org/t/acme-v2-scheduled-deprecation-of-unauthenticated-resource-gets/74380). Please update to `acme-client >= v3.2.0` or `>= v2.3.1` before this date to avoid being affected by this API change. | ||
## v3.3.2 (2022-03-19) | ||
* `backport` Use SHA-256 when signing CSRs | ||
## v3.3.1 (2020-01-07) | ||
@@ -5,0 +7,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"author": "nmorsman", | ||
"version": "3.3.1", | ||
"version": "3.3.2", | ||
"main": "src/index.js", | ||
@@ -8,0 +8,0 @@ "types": "types", |
@@ -325,4 +325,4 @@ /** | ||
/* Sign CSR */ | ||
csr.sign(privateKey); | ||
/* Sign CSR using SHA-256 */ | ||
csr.sign(privateKey, forge.md.sha256.create()); | ||
@@ -329,0 +329,0 @@ /* Done */ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77338