org.bouncycastle.jcajce.provider.symmetric.VMPCKSA3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk15on Show documentation
Show all versions of bcprov-ext-debug-jdk15on 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.5 to JDK 1.8. Note: this package includes the NTRU encryption algorithms.
package org.bouncycastle.jcajce.provider.symmetric;
import org.bouncycastle.crypto.CipherKeyGenerator;
import org.bouncycastle.crypto.engines.VMPCKSA3Engine;
import org.bouncycastle.jcajce.provider.config.ConfigurableProvider;
import org.bouncycastle.jcajce.provider.symmetric.util.BaseKeyGenerator;
import org.bouncycastle.jcajce.provider.symmetric.util.BaseStreamCipher;
import org.bouncycastle.jcajce.provider.util.AlgorithmProvider;
public final class VMPCKSA3
{
private VMPCKSA3()
{
}
public static class Base
extends BaseStreamCipher
{
public Base()
{
super(new VMPCKSA3Engine(), 16);
}
}
public static class KeyGen
extends BaseKeyGenerator
{
public KeyGen()
{
super("VMPC-KSA3", 128, new CipherKeyGenerator());
}
}
public static class Mappings
extends AlgorithmProvider
{
private static final String PREFIX = VMPCKSA3.class.getName();
public Mappings()
{
}
public void configure(ConfigurableProvider provider)
{
provider.addAlgorithm("Cipher.VMPC-KSA3", PREFIX + "$Base");
provider.addAlgorithm("KeyGenerator.VMPC-KSA3", PREFIX + "$KeyGen");
}
}
}