org.bouncycastle.jcajce.provider.digest.Haraka Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-jdk15on Show documentation
Show all versions of bcprov-ext-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.digest;
import org.bouncycastle.crypto.digests.Haraka256Digest;
import org.bouncycastle.crypto.digests.Haraka512Digest;
import org.bouncycastle.jcajce.provider.config.ConfigurableProvider;
public class Haraka
{
private Haraka()
{
}
static public class Digest256
extends BCMessageDigest
implements Cloneable
{
public Digest256()
{
super(new Haraka256Digest());
}
public Object clone()
throws CloneNotSupportedException
{
Digest256 d = (Digest256)super.clone();
d.digest = new Haraka256Digest((Haraka256Digest)digest);
return d;
}
}
static public class Digest512
extends BCMessageDigest
implements Cloneable
{
public Digest512()
{
super(new Haraka512Digest());
}
public Object clone()
throws CloneNotSupportedException
{
Digest512 d = (Digest512)super.clone();
d.digest = new Haraka512Digest((Haraka512Digest)digest);
return d;
}
}
public static class Mappings
extends DigestAlgorithmProvider
{
private static final String PREFIX = Haraka.class.getName();
public Mappings()
{
}
public void configure(ConfigurableProvider provider)
{
provider.addAlgorithm("MessageDigest.HARAKA-256", PREFIX + "$Digest256");
provider.addAlgorithm("MessageDigest.HARAKA-512", PREFIX + "$Digest512");
}
}
}