org.bouncycastle.pqc.crypto.ntru.NTRUKEMGenerator 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.EncapsulatedSecretGenerator;
import org.bouncycastle.crypto.SecretWithEncapsulation;
import org.bouncycastle.crypto.digests.SHA3Digest;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
import org.bouncycastle.pqc.crypto.util.SecretWithEncapsulationImpl;
import org.bouncycastle.pqc.math.ntru.Polynomial;
import org.bouncycastle.pqc.math.ntru.parameters.NTRUParameterSet;
import org.bouncycastle.util.Arrays;
/**
* Encapsulate a secret using NTRU. returns a {@link SecretWithEncapsulation} as encapsulation.
*
* @see NTRUKEMExtractor
* @see NTRU website
*/
public class NTRUKEMGenerator
implements EncapsulatedSecretGenerator
{
private final SecureRandom random;
/**
* Constructor
*
* @param random a secure random number generator
*/
public NTRUKEMGenerator(SecureRandom random)
{
this.random = random;
}
public SecretWithEncapsulation generateEncapsulated(AsymmetricKeyParameter recipientKey)
{
NTRUParameterSet parameterSet = ((NTRUPublicKeyParameters)recipientKey).getParameters().parameterSet;
NTRUSampling sampling = new NTRUSampling(parameterSet);
NTRUOWCPA owcpa = new NTRUOWCPA(parameterSet);
Polynomial r;
Polynomial m;
byte[] rm = new byte[parameterSet.owcpaMsgBytes()];
byte[] rmSeed = new byte[parameterSet.sampleRmBytes()];
random.nextBytes(rmSeed);
PolynomialPair pair = sampling.sampleRm(rmSeed);
r = pair.r();
m = pair.m();
byte[] rm1 = r.s3ToBytes(parameterSet.owcpaMsgBytes());
System.arraycopy(rm1, 0, rm, 0, rm1.length);
byte[] rm2 = m.s3ToBytes(rm.length - parameterSet.packTrinaryBytes());
System.arraycopy(rm2, 0, rm, parameterSet.packTrinaryBytes(), rm2.length);
SHA3Digest sha3256 = new SHA3Digest(256);
sha3256.update(rm, 0, rm.length);
byte[] k = new byte[sha3256.getDigestSize()];
sha3256.doFinal(k, 0);
r.z3ToZq();
byte[] c = owcpa.encrypt(r, m, ((NTRUPublicKeyParameters)recipientKey).publicKey);
byte[] sharedKey = Arrays.copyOfRange(k, 0, parameterSet.sharedKeyBytes());
Arrays.clear(k);
return new SecretWithEncapsulationImpl(sharedKey, c);
}
}