org.spongycastle.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 prov Show documentation
Show all versions of prov Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
The newest version!
package org.spongycastle.jcajce.provider.symmetric;
import org.spongycastle.crypto.CipherKeyGenerator;
import org.spongycastle.crypto.engines.XTEAEngine;
import org.spongycastle.jcajce.provider.config.ConfigurableProvider;
import org.spongycastle.jcajce.provider.symmetric.util.BaseBlockCipher;
import org.spongycastle.jcajce.provider.symmetric.util.BaseKeyGenerator;
import org.spongycastle.jcajce.provider.symmetric.util.IvAlgorithmParameters;
import org.spongycastle.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");
}
}
}