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.
Этот коммит содержится в:
Valters Jansons 2019-03-15 05:16:55 +02:00
родитель fd6a46e88a
Коммит 9614a1e9ca
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4F021EB3A83CE748

Просмотреть файл

@ -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;