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

com.firefly.net.tcp.secure.openssl.nativelib.ClientAuth Maven / Gradle / Ivy

There is a newer version: 5.0.0-dev6
Show newest version
package com.firefly.net.tcp.secure.openssl.nativelib;

/**
 * Indicates the state of the {@link javax.net.ssl.SSLEngine} with respect to client authentication.
 * This configuration item really only applies when building the server-side {@link SslContext}.
 */
public enum ClientAuth {
    /**
     * Indicates that the {@link javax.net.ssl.SSLEngine} will not request client authentication.
     */
    NONE,

    /**
     * Indicates that the {@link javax.net.ssl.SSLEngine} will request client authentication.
     */
    OPTIONAL,

    /**
     * Indicates that the {@link javax.net.ssl.SSLEngine} will *require* client authentication.
     */
    REQUIRE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy