acme-client
Advanced tools
Comparing version 4.2.3 to 4.2.4
# Changelog | ||
## 4.2.4 (2022-03-19) | ||
* `fixed` Use SHA-256 when signing CSRs | ||
## v3.3.2 (2022-03-19) | ||
* `backport` Use SHA-256 when signing CSRs | ||
## v4.2.3 (2022-01-11) | ||
@@ -4,0 +14,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"author": "nmorsman", | ||
"version": "4.2.3", | ||
"version": "4.2.4", | ||
"main": "src/index.js", | ||
@@ -8,0 +8,0 @@ "types": "types", |
@@ -25,2 +25,5 @@ # acme-client [![CircleCI](https://circleci.com/gh/publishlab/node-acme-client.svg?style=svg)](https://circleci.com/gh/publishlab/node-acme-client) | ||
* [Usage](#usage) | ||
* [Directory URLs](#directory-urls) | ||
* [External account binding](#external-account-binding) | ||
* [Specifying the account URL](#specifying-the-account-url) | ||
* [Cryptography](#cryptography) | ||
@@ -27,0 +30,0 @@ * [Auto mode](#auto-mode) |
@@ -439,4 +439,4 @@ /** | ||
/* Sign CSR */ | ||
csr.sign(privateKey); | ||
/* Sign CSR using SHA-256 */ | ||
csr.sign(privateKey, forge.md.sha256.create()); | ||
@@ -443,0 +443,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
94536
255