org.bouncycastle.jcajce.provider.symmetric.XTEA Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bouncycastle Show documentation
Show all versions of bouncycastle Show documentation
The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar
contains APIs for JDK 1.5 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one
provided with the Bouncy Castle Cryptography APIs.
package org.bouncycastle.jcajce.provider.symmetric;
import org.bouncycastle.crypto.CipherKeyGenerator;
import org.bouncycastle.crypto.engines.XTEAEngine;
import org.bouncycastle.jcajce.provider.config.ConfigurableProvider;
import org.bouncycastle.jcajce.provider.symmetric.util.BaseBlockCipher;
import org.bouncycastle.jcajce.provider.symmetric.util.BaseKeyGenerator;
import org.bouncycastle.jcajce.provider.symmetric.util.IvAlgorithmParameters;
import org.bouncycastle.jcajce.provider.util.AlgorithmProvider;
public final class XTEA
{
private XTEA()
{
}
public static class ECB
extends BaseBlockCipher
{
public ECB()
{
super(new XTEAEngine());
}
}
public static class KeyGen
extends BaseKeyGenerator
{
public KeyGen()
{
super("XTEA", 128, new CipherKeyGenerator());
}
}
public static class AlgParams
extends IvAlgorithmParameters
{
protected String engineToString()
{
return "XTEA IV";
}
}
public static class Mappings
extends AlgorithmProvider
{
private static final String PREFIX = XTEA.class.getName();
public Mappings()
{
}
public void configure(ConfigurableProvider provider)
{
provider.addAlgorithm("Cipher.XTEA", PREFIX + "$ECB");
provider.addAlgorithm("KeyGenerator.XTEA", PREFIX + "$KeyGen");
provider.addAlgorithm("AlgorithmParameters.XTEA", PREFIX + "$AlgParams");
}
}
}