org.bouncycastle.pqc.jcajce.spec.LMSHSSParameterSpec 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.pqc.jcajce.spec;
import java.security.spec.AlgorithmParameterSpec;
/**
* ParameterSpec for keys using the LMS Hierarchical Signature System (HSS).
* @deprecated use LMSKeyGenParameterSpec
*/
public class LMSHSSParameterSpec
implements AlgorithmParameterSpec
{
private final LMSParameterSpec[] specs;
/**
* Base constructor, specify the LMS parameters at each level of the hierarchy.
*
* @param specs the LMS parameter specs for each level of the hierarchy.
*/
public LMSHSSParameterSpec(LMSParameterSpec[] specs)
{
this.specs = specs.clone();
}
/**
* Return the LMS parameters for the HSS hierarchy.
*
* @return the HSS component LMS parameter specs.
*/
public LMSParameterSpec[] getLMSSpecs()
{
return specs.clone();
}
}