All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openfact.keys.RsaKeyMetadata Maven / Gradle / Ivy

package org.openfact.keys;

import java.security.PublicKey;
import java.security.cert.Certificate;

public class RsaKeyMetadata extends KeyMetadata {

    private PublicKey publicKey;
    private Certificate certificate;

    public PublicKey getPublicKey() {
        return publicKey;
    }

    public void setPublicKey(PublicKey publicKey) {
        this.publicKey = publicKey;
    }

    public Certificate getCertificate() {
        return certificate;
    }

    public void setCertificate(Certificate certificate) {
        this.certificate = certificate;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy