Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

acme-v2

Package Overview
Dependencies
Maintainers
3
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

acme-v2 - npm Package Compare versions

Comparing version 1.0.9 to 1.1.0

14

node.js

@@ -143,3 +143,3 @@ /*!

}
, new Buffer(JSON.stringify(jwk))
, Buffer.from(JSON.stringify(jwk))
);

@@ -156,3 +156,3 @@ }

}
, new Buffer(payload)
, Buffer.from(payload)
);

@@ -293,3 +293,3 @@

, { nonce: me._nonce, alg: 'RS256', url: ch.url, kid: me._kid }
, new Buffer(JSON.stringify({ "status": "deactivated" }))
, Buffer.from(JSON.stringify({ "status": "deactivated" }))
);

@@ -373,3 +373,3 @@ me._nonce = null;

, { nonce: me._nonce, alg: 'RS256', url: ch.url, kid: me._kid }
, new Buffer(JSON.stringify({ }))
, Buffer.from(JSON.stringify({ }))
);

@@ -446,3 +446,3 @@ me._nonce = null;

, { nonce: me._nonce, alg: 'RS256', url: me._finalize, kid: me._kid }
, new Buffer(payload)
, Buffer.from(payload)
);

@@ -552,3 +552,3 @@

, { nonce: me._nonce, alg: 'RS256', url: me._directoryUrls.newOrder, kid: me._kid }
, new Buffer(payload)
, Buffer.from(payload)
);

@@ -636,3 +636,3 @@

me.RSA = me.RSA || require('rsa-compat').RSA;
me.request = me.request || require('request');
me.request = me.request || require('@coolaj86/urequest');
me._dig = function (query) {

@@ -639,0 +639,0 @@ // TODO use digd.js

{
"name": "acme-v2",
"version": "1.0.9",
"version": "1.1.0",
"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",

@@ -42,8 +42,5 @@ "homepage": "https://git.coolaj86.com/coolaj86/acme-v2.js",

"dependencies": {
"request": "^2.85.0",
"@coolaj86/urequest": "^1.1.1",
"rsa-compat": "^1.3.0"
},
"optionalDependencies": {
"bluebird": "^3.5.1"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc