org.bouncycastle.jcajce.provider.symmetric.HC128 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.bouncycastle.jcajce.provider.symmetric;
import org.bouncycastle.crypto.CipherKeyGenerator;
import org.bouncycastle.crypto.engines.HC128Engine;
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 HC128
{
private HC128()
{
}
public static class Base
extends BaseStreamCipher
{
public Base()
{
super(new HC128Engine(), 16);
}
}
public static class KeyGen
extends BaseKeyGenerator
{
public KeyGen()
{
super("HC128", 128, new CipherKeyGenerator());
}
}
public static class AlgParams
extends IvAlgorithmParameters
{
protected String engineToString()
{
return "HC128 IV";
}
}
public static class Mappings
extends AlgorithmProvider
{
private static final String PREFIX = HC128.class.getName();
public Mappings()
{
}
public void configure(ConfigurableProvider provider)
{
provider.addAlgorithm("Cipher.HC128", PREFIX + "$Base");
provider.addAlgorithm("KeyGenerator.HC128", PREFIX + "$KeyGen");
provider.addAlgorithm("AlgorithmParameters.HC128", PREFIX + "$AlgParams");
}
}
}