org.bouncycastle.jce.provider.symmetric.CAST5Mappings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk16 Show documentation
Show all versions of bcprov-jdk16 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6.
package org.bouncycastle.jce.provider.symmetric;
import java.util.HashMap;
public class CAST5Mappings
extends HashMap
{
public CAST5Mappings()
{
put("AlgorithmParameters.CAST5", "org.bouncycastle.jce.provider.symmetric.CAST5$AlgParams");
put("Alg.Alias.AlgorithmParameters.1.2.840.113533.7.66.10", "CAST5");
put("AlgorithmParameterGenerator.CAST5", "org.bouncycastle.jce.provider.symmetric.CAST5$AlgParamGen");
put("Alg.Alias.AlgorithmParameterGenerator.1.2.840.113533.7.66.10", "CAST5");
put("Cipher.CAST5", "org.bouncycastle.jce.provider.symmetric.CAST5$ECB");
put("Cipher.1.2.840.113533.7.66.10", "org.bouncycastle.jce.provider.symmetric.CAST5$CBC");
put("KeyGenerator.CAST5", "org.bouncycastle.jce.provider.symmetric.CAST5$KeyGen");
put("Alg.Alias.KeyGenerator.1.2.840.113533.7.66.10", "CAST5");
}
}