Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
Run grunt and check results in.
Browse files Browse the repository at this point in the history
Very unfortunate, but we need to manually keep the dist/ folder in sync.
  • Loading branch information
alokmenghrajani committed Jun 13, 2018
1 parent 33b9606 commit c566736
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/jose-commonjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ Jose.Utils.importRsaPrivateKey = function(rsa_key, alg) {
rsa_key.alg = alg;
}
jwk = Utils.convertRsaKey(rsa_key, ["n", "e", "d", "p", "q", "dp", "dq", "qi"]);
config = getCryptoConfig("RSA-OAEP");
config = getCryptoConfig(alg);
} else {
var rk = {};
for (var name in rsa_key) {
Expand Down
2 changes: 1 addition & 1 deletion dist/jose-testing.js
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ Jose.Utils.importRsaPrivateKey = function(rsa_key, alg) {
rsa_key.alg = alg;
}
jwk = Utils.convertRsaKey(rsa_key, ["n", "e", "d", "p", "q", "dp", "dq", "qi"]);
config = getCryptoConfig("RSA-OAEP");
config = getCryptoConfig(alg);
} else {
var rk = {};
for (var name in rsa_key) {
Expand Down
2 changes: 1 addition & 1 deletion dist/jose.js
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ Jose.Utils.importRsaPrivateKey = function(rsa_key, alg) {
rsa_key.alg = alg;
}
jwk = Utils.convertRsaKey(rsa_key, ["n", "e", "d", "p", "q", "dp", "dq", "qi"]);
config = getCryptoConfig("RSA-OAEP");
config = getCryptoConfig(alg);
} else {
var rk = {};
for (var name in rsa_key) {
Expand Down
Loading

0 comments on commit c566736

Please sign in to comment.