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

panda.net.ssl.SSLProtocols Maven / Gradle / Ivy

Go to download

Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.

There is a newer version: 1.8.0
Show newest version
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 };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy