Fix keypairs
module reference in lib/rsa.js
Commit 2e7134dd8a3c33cc59f801ef48c4fb045ad555a6 introduced breakage and was subsequently released as v2.0.4. The breakage crashes the application using the module as it tries to `require` a module named `Keypairs` even though it should not be capitalized.
This commit is contained in:
parent
fd6a46e88a
commit
9614a1e9ca
@ -13,7 +13,7 @@ try {
|
|||||||
/* ignore */
|
/* ignore */
|
||||||
}
|
}
|
||||||
|
|
||||||
var Keypairs = require('Keypairs');
|
var Keypairs = require('keypairs');
|
||||||
var RSACSR = require('./rsa-csr');
|
var RSACSR = require('./rsa-csr');
|
||||||
var NOBJ = {};
|
var NOBJ = {};
|
||||||
var DEFAULT_BITLEN = 2048;
|
var DEFAULT_BITLEN = 2048;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user