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 bcprov-jdk14 Show documentation
Show all versions of bcprov-jdk14 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.4.
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;
}
}