org.bouncycastle.pqc.math.ntru.parameters.NTRUHRSSParameterSet Maven / Gradle / Ivy
Show all versions of bcprov-jdk14 Show documentation
package org.bouncycastle.pqc.math.ntru.parameters;
import org.bouncycastle.pqc.math.ntru.HRSS1373Polynomial;
import org.bouncycastle.pqc.math.ntru.HRSSPolynomial;
import org.bouncycastle.pqc.math.ntru.Polynomial;
/**
* Abstract class for NTRU-HRSS parameter classes.
*
* The naming convention for the classes is {@code NTRUHRSS[n]}. e.g. {@link NTRUHRSS701} has n = 701.
*
* @see NTRUHRSS701
* @see NTRU specification document section 1.3.3
*/
public abstract class NTRUHRSSParameterSet
extends NTRUParameterSet
{
NTRUHRSSParameterSet(int n, int logQ, int seedBytes, int prfKeyBytes, int sharedKeyBytes)
{
super(n, logQ, seedBytes, prfKeyBytes, sharedKeyBytes);
}
public Polynomial createPolynomial()
{
return this.n() == 1373 ? new HRSS1373Polynomial(this) : new HRSSPolynomial(this);
}
public int sampleFgBytes()
{
return 2 * sampleIidBytes();
}
public int sampleRmBytes()
{
return 2 * sampleIidBytes();
}
}