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

io.gatling.recorder.internal.bouncycastle.pqc.math.ntru.parameters.NTRUHRSSParameterSet Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.pqc.math.ntru.parameters;

import io.gatling.recorder.internal.bouncycastle.pqc.math.ntru.HRSS1373Polynomial;
import io.gatling.recorder.internal.bouncycastle.pqc.math.ntru.HRSSPolynomial;
import io.gatling.recorder.internal.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); } @Override public Polynomial createPolynomial() { return this.n() == 1373 ? new HRSS1373Polynomial(this) : new HRSSPolynomial(this); } @Override public int sampleFgBytes() { return 2 * sampleIidBytes(); } @Override public int sampleRmBytes() { return 2 * sampleIidBytes(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy