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

com.github.marschall.sslservercertstore.SSLServerProvider Maven / Gradle / Ivy

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