org.bouncycastle.pqc.jcajce.provider.mceliece.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk15to18 Show documentation
Show all versions of bcprov-jdk15to18 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.
package org.bouncycastle.pqc.jcajce.provider.mceliece;
import org.bouncycastle.asn1.nist.NISTObjectIdentifiers;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
import org.bouncycastle.crypto.Digest;
import org.bouncycastle.crypto.util.DigestFactory;
import org.bouncycastle.internal.asn1.oiw.OIWObjectIdentifiers;
class Utils
{
static Digest getDigest(AlgorithmIdentifier digest)
{
if (digest.getAlgorithm().equals(OIWObjectIdentifiers.idSHA1))
{
return DigestFactory.createSHA1();
}
if (digest.getAlgorithm().equals(NISTObjectIdentifiers.id_sha224))
{
return DigestFactory.createSHA224();
}
if (digest.getAlgorithm().equals(NISTObjectIdentifiers.id_sha256))
{
return DigestFactory.createSHA256();
}
if (digest.getAlgorithm().equals(NISTObjectIdentifiers.id_sha384))
{
return DigestFactory.createSHA384();
}
if (digest.getAlgorithm().equals(NISTObjectIdentifiers.id_sha512))
{
return DigestFactory.createSHA512();
}
throw new IllegalArgumentException("unrecognised OID in digest algorithm identifier: " + digest.getAlgorithm());
}
}