Browse Source

v1.0.1: fix typo: cSR -> CSR

browser-v2
AJ ONeal 5 years ago
parent
commit
87a12c36b0
  1. 2
      lib/acme.js
  2. 2
      package.json

2
lib/acme.js

@ -850,7 +850,7 @@ ACME.create = function create(me) {
// me.debug = true;
me.challengePrefixes = ACME.challengePrefixes;
me.Keypairs = me.Keypairs || exports.Keypairs || require('keypairs').Keypairs;
me.CSR = me.CSR || exports.cSR || require('CSR').CSR;
me.CSR = me.CSR || exports.CSR || require('CSR').CSR;
me._nonces = [];
me._canUse = {};
if (!me._baseUrl) {

2
package.json

@ -1,6 +1,6 @@
{
"name": "@bluecrypt/acme",
"version": "1.0.0",
"version": "1.0.1",
"description": "Free SSL certificates through Let's Encrypt, right in your browser",
"main": "bluecrypt-acme.js",
"homepage": "https://rootprojects.org/acme/",

Loading…
Cancel
Save