com.fitbur.bouncycastle.pqc.jcajce.spec.GMSSKeySpec Maven / Gradle / Ivy
package com.fitbur.bouncycastle.pqc.jcajce.spec;
import java.security.spec.KeySpec;
import com.fitbur.bouncycastle.pqc.crypto.gmss.GMSSParameters;
public class GMSSKeySpec
implements KeySpec
{
/**
* The GMSSParameterSet
*/
private GMSSParameters gmssParameterSet;
protected GMSSKeySpec(GMSSParameters gmssParameterSet)
{
this.gmssParameterSet = gmssParameterSet;
}
/**
* Returns the GMSS parameter set
*
* @return The GMSS parameter set
*/
public GMSSParameters getParameters()
{
return gmssParameterSet;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy