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.
Tento commit je obsažen v:
Valters Jansons 2019-03-15 05:16:55 +02:00
rodič fd6a46e88a
revize 9614a1e9ca
V databázi nebyl nalezen žádný známý klíč pro tento podpis
ID GPG klíče: 4F021EB3A83CE748

Zobrazit soubor

@ -13,7 +13,7 @@ try {
/* ignore */
}
var Keypairs = require('Keypairs');
var Keypairs = require('keypairs');
var RSACSR = require('./rsa-csr');
var NOBJ = {};
var DEFAULT_BITLEN = 2048;