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

org.xbib.net.security.CertificateProvider Maven / Gradle / Ivy

The newest version!
package org.xbib.net.security;

import java.io.IOException;
import java.io.InputStream;
import java.security.PrivateKey;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.util.Collection;
import java.util.Map;

public interface CertificateProvider {

    Map.Entry> provide(InputStream key, String password, InputStream chain)
            throws CertificateException, IOException;

    Map.Entry> provideSelfSigned(String fqdn)
            throws CertificateException, IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy