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

panda.util.crypto.Algorithms 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.util.crypto;

public class Algorithms {
	public final static String DH = "DH"; //DiffieHellman
	public final static String DSA = "DSA";
	public final static String RSA = "RSA";
	public final static String EC = "EC";

	//------------------------------------------------------------------------------
	public static final String AES = "AES";
	public static final String Blowfish = "Blowfish";
	public static final String DES = "DES";
	public static final String DESede = "DESede";
	public static final String RC2 = "RC2";
	public static final String RC4 = "RC4";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy