org.bouncycastle.pqc.jcajce.provider.Dilithium Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-debug-jdk15to18 Show documentation
Show all versions of bcprov-debug-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;
import org.bouncycastle.asn1.bc.BCObjectIdentifiers;
import org.bouncycastle.jcajce.provider.config.ConfigurableProvider;
import org.bouncycastle.jcajce.provider.util.AsymmetricAlgorithmProvider;
import org.bouncycastle.jcajce.provider.util.AsymmetricKeyInfoConverter;
import org.bouncycastle.pqc.jcajce.provider.dilithium.DilithiumKeyFactorySpi;
public class Dilithium
{
private static final String PREFIX = "org.bouncycastle.pqc.jcajce.provider" + ".dilithium.";
public static class Mappings
extends AsymmetricAlgorithmProvider
{
public Mappings()
{
}
public void configure(ConfigurableProvider provider)
{
provider.addAlgorithm("KeyFactory.DILITHIUM", PREFIX + "DilithiumKeyFactorySpi");
provider.addAlgorithm("KeyPairGenerator.DILITHIUM", PREFIX + "DilithiumKeyPairGeneratorSpi");
provider.addAlgorithm("KeyGenerator.DILITHIUM", PREFIX + "DilithiumKeyGeneratorSpi");
addSignatureAlgorithm(provider, "DILITHIUM", PREFIX + "SignatureSpi$Base", BCObjectIdentifiers.dilithium);
addSignatureAlias(provider, "DILITHIUM", BCObjectIdentifiers.dilithium2);
addSignatureAlias(provider, "DILITHIUM", BCObjectIdentifiers.dilithium3);
addSignatureAlias(provider, "DILITHIUM", BCObjectIdentifiers.dilithium5);
addSignatureAlias(provider, "DILITHIUM", BCObjectIdentifiers.dilithium2_aes);
addSignatureAlias(provider, "DILITHIUM", BCObjectIdentifiers.dilithium3_aes);
addSignatureAlias(provider, "DILITHIUM", BCObjectIdentifiers.dilithium5_aes);
AsymmetricKeyInfoConverter keyFact = new DilithiumKeyFactorySpi();
registerOid(provider, BCObjectIdentifiers.dilithium2, "DILITHIUM", keyFact);
registerOid(provider, BCObjectIdentifiers.dilithium3, "DILITHIUM", keyFact);
registerOid(provider, BCObjectIdentifiers.dilithium5, "DILITHIUM", keyFact);
registerOid(provider, BCObjectIdentifiers.dilithium2_aes, "DILITHIUM", keyFact);
registerOid(provider, BCObjectIdentifiers.dilithium3_aes, "DILITHIUM", keyFact);
registerOid(provider, BCObjectIdentifiers.dilithium5_aes, "DILITHIUM", keyFact);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy