org.bouncycastle.jcajce.provider.symmetric.HC256 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on 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 Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.jcajce.provider.symmetric;
import org.bouncycastle.crypto.CipherKeyGenerator;
import org.bouncycastle.crypto.engines.HC256Engine;
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.symmetric.util.IvAlgorithmParameters;
import org.bouncycastle.jcajce.provider.util.AlgorithmProvider;
public final class HC256
{
private HC256()
{
}
public static class Base
extends BaseStreamCipher
{
public Base()
{
super(new HC256Engine(), 32);
}
}
public static class KeyGen
extends BaseKeyGenerator
{
public KeyGen()
{
super("HC256", 256, new CipherKeyGenerator());
}
}
public static class AlgParams
extends IvAlgorithmParameters
{
protected String engineToString()
{
return "HC256 IV";
}
}
public static class Mappings
extends AlgorithmProvider
{
private static final String PREFIX = HC256.class.getName();
public Mappings()
{
}
public void configure(ConfigurableProvider provider)
{
provider.addAlgorithm("Cipher.HC256", PREFIX + "$Base");
provider.addAlgorithm("KeyGenerator.HC256", PREFIX + "$KeyGen");
provider.addAlgorithm("AlgorithmParameters.HC256", PREFIX + "$AlgParams");
}
}
}