panda.net.ssl.SSLProtocols Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-core Show documentation
Show all versions of panda-core Show documentation
Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.
package panda.net.ssl;
public class SSLProtocols {
public static final String SSLv2 = "SSLv2";
public static final String SSLv3 = "SSLv3";
public static final String TLSv1 = "TLSv1";
public static final String TLSv1_1 = "TLSv1.1";
public static final String TLSv1_2 = "TLSv1.2";
public static final String[] TLS_ONLY = new String[] { TLSv1, TLSv1_1, TLSv1_2 };
}