Browse Source

v1.2.14: use try/catch on PEM import

master v1.2.14
AJ ONeal 5 years ago
parent
commit
48bee9204d
  1. 10
      keypairs.js
  2. 2
      package.json

10
keypairs.js

@ -346,10 +346,14 @@ Enc.bufToUrlBase64 = function (buf) {
// For 'rsa-compat' module only
// PLEASE do not use these sync methods, they are deprecated
Keypairs._importSync = function (opts) {
if ('RSA' === opts.jwk.kty) {
return Rasha.importSync(opts);
} else {
try {
return Eckles.importSync(opts);
} catch(e) {
try {
return Rasha.importSync(opts);
} catch(e) {
console.error("options.pem does not appear to be a valid RSA or ECDSA public or private key");
}
}
};
// PLEASE do not use these, they are deprecated

2
package.json

@ -1,6 +1,6 @@
{
"name": "keypairs",
"version": "1.2.13",
"version": "1.2.14",
"description": "Lightweight RSA/ECDSA keypair generation and JWK <-> PEM using node's native RSA and ECDSA support",
"main": "keypairs.js",
"files": [

Loading…
Cancel
Save