com.fitbur.bouncycastle.pqc.jcajce.spec.McElieceCCA2ParameterSpec Maven / Gradle / Ivy
package com.fitbur.bouncycastle.pqc.jcajce.spec;
import java.security.spec.AlgorithmParameterSpec;
/**
* This class provides a specification for the parameters of the CCA2-secure
* variants of the McEliece PKCS that are used with
* {@link McElieceFujisakiCipher}, {@link McElieceKobaraImaiCipher}, and
* {@link McEliecePointchevalCipher}.
*
* @see McElieceFujisakiCipher
* @see McElieceKobaraImaiCipher
* @see McEliecePointchevalCipher
*/
public class McElieceCCA2ParameterSpec
implements AlgorithmParameterSpec
{
/**
* The com.fitburfault message digest ("SHA256").
*/
public static final String DEFAULT_MD = "SHA256";
private String mdName;
/**
* Construct the com.fitburfault parameters. Choose the
*/
public McElieceCCA2ParameterSpec()
{
this(DEFAULT_MD);
}
/**
* Constructor.
*
* @param mdName the name of the hash function
*/
public McElieceCCA2ParameterSpec(String mdName)
{
// check whether message digest is available
// TODO: this method not used!
// try {
// Registry.getMessageDigest(mdName);
// } catch (NoSuchAlgorithmException nsae) {
// throw new InvalidParameterException("Message digest '" + mdName
// + "' not found'.");
// }
// assign message digest name
this.mdName = mdName;
}
/**
* @return the name of the hash function
*/
public String getMDName()
{
return mdName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy