fixed JWK algorithm display

pull/105/merge
Justin Richer 13 years ago
parent 84aa451095
commit b0a7ebd9b1

@ -106,7 +106,7 @@ public class JwkKeyListView extends AbstractView {
JsonObject o = new JsonObject(); JsonObject o = new JsonObject();
o.addProperty("use", "sig"); // since we don't do encryption yet o.addProperty("use", "sig"); // since we don't do encryption yet
o.addProperty("alg", rsaSigner.getAlgorithm()); // we know this is RSA o.addProperty("alg", "RSA"); //rsaSigner.getAlgorithm()); // we know this is RSA
o.addProperty("mod", m64); o.addProperty("mod", m64);
o.addProperty("exp", e64); o.addProperty("exp", e64);
o.addProperty("kid", keyId); o.addProperty("kid", keyId);

Loading…
Cancel
Save