v1.7.7: revert v1.7.6
This commit is contained in:
parent
a750d1b0b4
commit
54e9e9ec16
6
node.js
6
node.js
|
@ -379,11 +379,7 @@ ACME._challengeToAuth = function (me, options, request, challenge, dryrun) {
|
||||||
// (note the duplicate status overwrites the one above, but they should be the same)
|
// (note the duplicate status overwrites the one above, but they should be the same)
|
||||||
Object.keys(challenge).forEach(function (key) {
|
Object.keys(challenge).forEach(function (key) {
|
||||||
// don't confused devs with the id url
|
// don't confused devs with the id url
|
||||||
if ('url' === key) {
|
|
||||||
//auth.uri = challenge.url;
|
|
||||||
} else {
|
|
||||||
auth[key] = challenge[key];
|
auth[key] = challenge[key];
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// batteries-included helpers
|
// batteries-included helpers
|
||||||
|
@ -395,7 +391,7 @@ ACME._challengeToAuth = function (me, options, request, challenge, dryrun) {
|
||||||
auth.keyAuthorization = challenge.token + '.' + auth.thumbprint;
|
auth.keyAuthorization = challenge.token + '.' + auth.thumbprint;
|
||||||
// conflicts with ACME challenge id url, if we ever decide to use it, but this just makes sense
|
// conflicts with ACME challenge id url, if we ever decide to use it, but this just makes sense
|
||||||
// (as opposed to httpUrl or challengeUrl or uri, etc - I'd be happier to call the id url a uri)
|
// (as opposed to httpUrl or challengeUrl or uri, etc - I'd be happier to call the id url a uri)
|
||||||
auth.url = 'http://' + auth.identifier.value + ACME.challengePrefixes['http-01'] + '/' + auth.token;
|
auth.challengeUrl = 'http://' + auth.identifier.value + ACME.challengePrefixes['http-01'] + '/' + auth.token;
|
||||||
auth.dnsHost = dnsPrefix + '.' + auth.hostname.replace('*.', '');
|
auth.dnsHost = dnsPrefix + '.' + auth.hostname.replace('*.', '');
|
||||||
auth.dnsAuthorization = ACME._toWebsafeBase64(
|
auth.dnsAuthorization = ACME._toWebsafeBase64(
|
||||||
require('crypto').createHash('sha256').update(auth.keyAuthorization).digest('base64')
|
require('crypto').createHash('sha256').update(auth.keyAuthorization).digest('base64')
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "acme-v2",
|
"name": "acme-v2",
|
||||||
"version": "1.7.6",
|
"version": "1.7.7",
|
||||||
"description": "Free SSL. A framework for building Let's Encrypt v2 clients, and other ACME v2 (draft 11) clients. Successor to le-acme-core.js",
|
"description": "Free SSL. A framework for building Let's Encrypt v2 clients, and other ACME v2 (draft 11) clients. Successor to le-acme-core.js",
|
||||||
"homepage": "https://git.coolaj86.com/coolaj86/acme-v2.js",
|
"homepage": "https://git.coolaj86.com/coolaj86/acme-v2.js",
|
||||||
"main": "node.js",
|
"main": "node.js",
|
||||||
|
|
Loading…
Reference in New Issue