org.bouncycastle.pqc.crypto.xmss.XMSSMTKeyGenerationParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.bouncycastle.pqc.crypto.xmss;
import java.security.SecureRandom;
import org.bouncycastle.crypto.KeyGenerationParameters;
/**
* XMSS^MT key-pair generation parameters.
*/
public final class XMSSMTKeyGenerationParameters
extends KeyGenerationParameters
{
private final XMSSMTParameters xmssmtParameters;
/**
* XMSSMT constructor...
*
* @param prng Secure random to use.
*/
public XMSSMTKeyGenerationParameters(XMSSMTParameters xmssmtParameters, SecureRandom prng)
{
super(prng,-1);
this.xmssmtParameters = xmssmtParameters;
}
public XMSSMTParameters getParameters()
{
return xmssmtParameters;
}
}