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

org.bouncycastle.jsse.BCX509Key Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package org.bouncycastle.jsse;

import java.security.PrivateKey;
import java.security.cert.X509Certificate;

public interface BCX509Key
{
    X509Certificate[] getCertificateChain();

    String getKeyType();

    PrivateKey getPrivateKey();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy