removed web app from this git repository

pull/105/head
Mike Derryberry 2012-06-29 15:06:33 -04:00
parent 99a574d303
commit 754e8406bb
2 changed files with 11 additions and 9 deletions

View File

@ -15,20 +15,12 @@ import org.mitre.jwe.model.Jwe;
public abstract class AbstractJweDecrypter implements JwtDecrypter {
private Jwe jwe;
private PrivateKey privateKey;
private PublicKey publicKey;
public Jwe getJwe() {
return jwe;
}
public void setJwe(Jwe jwe) {
this.jwe = jwe;
}
public PrivateKey getPrivateKey() {
return privateKey;
}

View File

@ -7,10 +7,20 @@ import org.mitre.jwt.model.JwtHeader;
public class RsaDecrypter extends AbstractJweDecrypter {
private Jwe jwe;
public RsaDecrypter(Jwe jwe) {
setJwe(jwe);
}
public Jwe getJwe() {
return jwe;
}
public void setJwe(Jwe jwe) {
this.jwe = jwe;
}
@Override
public Jwe decrypt(String encryptedJwe) {