fixed JWK algorithm display

pull/105/merge
Justin Richer 2012-07-10 14:56:44 -04:00
parent 84aa451095
commit b0a7ebd9b1
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public class JwkKeyListView extends AbstractView {
JsonObject o = new JsonObject();
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("exp", e64);
o.addProperty("kid", keyId);