All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.pqc.crypto.ntru.NTRUKeyGenerationParameters Maven / Gradle / Ivy

Go to download

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.8 and up.

There is a newer version: 1.78.1
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy