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