org.bouncycastle.pqc.legacy.crypto.mceliece.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk14 Show documentation
Show all versions of bcprov-jdk14 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.4.
package org.bouncycastle.pqc.legacy.crypto.mceliece;
import org.bouncycastle.crypto.Digest;
import org.bouncycastle.crypto.digests.SHA1Digest;
import org.bouncycastle.crypto.digests.SHA224Digest;
import org.bouncycastle.crypto.digests.SHA256Digest;
import org.bouncycastle.crypto.digests.SHA384Digest;
import org.bouncycastle.crypto.digests.SHA512Digest;
class Utils
{
static Digest getDigest(String digestName)
{
if (digestName.equals("SHA-1"))
{
return new SHA1Digest();
}
if (digestName.equals("SHA-224"))
{
return new SHA224Digest();
}
if (digestName.equals("SHA-256"))
{
return new SHA256Digest();
}
if (digestName.equals("SHA-384"))
{
return new SHA384Digest();
}
if (digestName.equals("SHA-512"))
{
return new SHA512Digest();
}
throw new IllegalArgumentException("unrecognised digest algorithm: " + digestName);
}
}