PublicKey.java
516 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.apache.oltu.jose.jws.signature.VerifyingKey
*/
package com.adobe.granite.oauth.jwt.impl;
import org.apache.oltu.jose.jws.signature.VerifyingKey;
public class PublicKey
implements VerifyingKey {
java.security.PublicKey publicKey;
public PublicKey(java.security.PublicKey publicKey) {
this.publicKey = publicKey;
}
public java.security.PublicKey getPublicKey() {
return this.publicKey;
}
}