org.bouncycastle.pqc.crypto.ntru.NTRUPrivateKeyParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk14 Show documentation
Show all versions of bcprov-ext-debug-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. Note: this package includes the NTRU encryption algorithms.
package org.bouncycastle.pqc.crypto.ntru;
import org.bouncycastle.util.Arrays;
/**
* NTRU private key parameter class.
*/
public class NTRUPrivateKeyParameters
extends NTRUKeyParameters
{
final byte[] privateKey;
public NTRUPrivateKeyParameters(NTRUParameters params, byte[] key)
{
super(true, params);
this.privateKey = Arrays.clone(key);
}
/**
* Get private key.
*
* @return a byte array containing private key
*/
public byte[] getPrivateKey()
{
return Arrays.clone(this.privateKey);
}
/**
* Get the encoding of the private key.
*
* @return a byte array containing private key
*/
public byte[] getEncoded()
{
return getPrivateKey();
}
}