forked from root/acme.js
		
	v1.7.7: revert v1.7.6
This commit is contained in:
		
							parent
							
								
									48c6f842b4
								
							
						
					
					
						commit
						0b8aec0f8c
					
				
							
								
								
									
										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)
 | 
			
		||||
  Object.keys(challenge).forEach(function (key) {
 | 
			
		||||
    // don't confused devs with the id url
 | 
			
		||||
    if ('url' === key) {
 | 
			
		||||
      //auth.uri = challenge.url;
 | 
			
		||||
    } else {
 | 
			
		||||
    auth[key] = challenge[key];
 | 
			
		||||
    }
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
  // batteries-included helpers
 | 
			
		||||
@ -395,7 +391,7 @@ ACME._challengeToAuth = function (me, options, request, challenge, dryrun) {
 | 
			
		||||
  auth.keyAuthorization = challenge.token + '.' + auth.thumbprint;
 | 
			
		||||
  // 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)
 | 
			
		||||
  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.dnsAuthorization = ACME._toWebsafeBase64(
 | 
			
		||||
    require('crypto').createHash('sha256').update(auth.keyAuthorization).digest('base64')
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "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",
 | 
			
		||||
  "homepage": "https://git.coolaj86.com/coolaj86/acme-v2.js",
 | 
			
		||||
  "main": "node.js",
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user