org.bouncycastle.pqc.crypto.ntru.NTRUKeyGenerationParameters 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.ntru;
import java.security.SecureRandom;
import org.bouncycastle.crypto.KeyGenerationParameters;
/**
* Key generation parameters for NTRU.
*/
public class NTRUKeyGenerationParameters
extends KeyGenerationParameters
{
private final NTRUParameters ntruParameters;
/**
* Constructor.
*
* @param random a secure random number generator
* @param params an NTRU parameter set
*/
public NTRUKeyGenerationParameters(SecureRandom random, NTRUParameters params)
{
// We won't be using strength as the key length differs between public & private key
super(random, 0);
this.ntruParameters = params;
}
/**
* @return the NTRU parameter set used for this key generation
*/
public NTRUParameters getParameters()
{
return ntruParameters;
}
}