
com.github.marschall.sslservercertstore.SSLServerProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sslserver-certstore Show documentation
Show all versions of sslserver-certstore Show documentation
A CertStore that downloads the certificates from a TLS handshake
The newest version!
package com.github.marschall.sslservercertstore;
import java.security.Provider;
/**
* Security provider for {@value #NAME}.
*/
public final class SSLServerProvider extends Provider {
/**
* The name of this security provider.
*/
public static final String NAME = "SSLServer";
/**
* The type of keystore that uses directories to store certificates.
*/
public static final String TYPE = "SSLServer";
/**
* Default constructor, either called directly by programmatic registration or
* by JCA.
*/
public SSLServerProvider() {
super(NAME, "1.0.0", "SSLServer (CertStore)");
this.put("CertStore." + TYPE, SSLServerCertStore.class.getName());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy