org.bouncycastle.pqc.crypto.hqc.HQCParameters 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.hqc;
import org.bouncycastle.pqc.crypto.KEMParameters;
public class HQCParameters
implements KEMParameters
{
// 128 bits security
public static final HQCParameters hqc128 = new HQCParameters("hqc-128", 17669, 46, 384, 16, 31, 15, 66, 75, 75, 16767881, 4, new int[]{89, 69, 153, 116, 176, 117, 111, 75, 73, 233, 242, 233, 65, 210, 21, 139, 103, 173, 67, 118, 105, 210, 174, 110, 74, 69, 228, 82, 255, 181, 1});
// 192 bits security
public static final HQCParameters hqc192 = new HQCParameters("hqc-192", 35851, 56, 640, 24, 33, 16, 100, 114, 114, 16742417, 5, new int[]{45, 216, 239, 24, 253, 104, 27, 40, 107, 50, 163, 210, 227, 134, 224, 158, 119, 13, 158, 1, 238, 164, 82, 43, 15, 232, 246, 142, 50, 189, 29, 232, 1});
// 256 bits security
public static final HQCParameters hqc256 = new HQCParameters("hqc-256", 57637, 90, 640, 32, 59, 29, 131, 149, 149, 16772367, 5, new int[]{49, 167, 49, 39, 200, 121, 124, 91, 240, 63, 148, 71, 150, 123, 87, 101, 32, 215, 159, 71, 201, 115, 97, 210, 186, 183, 141, 217, 123, 12, 31, 243, 180, 219, 152, 239, 99, 141, 4, 246, 191, 144, 8, 232, 47, 27, 141, 178, 130, 64, 124, 47, 39, 188, 216, 48, 199, 187, 1});
private final String name;
private int n;
private int n1;
private int n2;
private int k;
private int g;
private int delta;
private int w;
private int wr;
private int we;
private int utilRejectionThreshold;
private int fft;
private int[] generatorPoly;
final static int PARAM_M = 8;
final static int GF_MUL_ORDER = 255;
private HQCEngine hqcEngine;
private HQCParameters(String name, int n, int n1, int n2, int k, int g, int delta, int w, int wr, int we, int utilRejectionThreshold, int fft, int[] generatorPoly)
{
this.name = name;
this.n = n;
this.n1 = n1;
this.n2 = n2;
this.k = k;
this.delta = delta;
this.w = w;
this.wr = wr;
this.we = we;
this.generatorPoly = generatorPoly;
this.g = g;
this.utilRejectionThreshold = utilRejectionThreshold;
this.fft = fft;
hqcEngine = new HQCEngine(n, n1, n2, k, g, delta, w, wr, we, utilRejectionThreshold, fft, generatorPoly);
}
int getN()
{
return n;
}
int getK()
{
return k;
}
int getDelta()
{
return delta;
}
int getW()
{
return w;
}
int getWr()
{
return wr;
}
int getWe()
{
return we;
}
int getN1()
{
return n1;
}
int getN2()
{
return n2;
}
int getSHA512_BYTES()
{
return 512 / 8;
}
int getSALT_SIZE_BYTES()
{
return 16;
}
int getN_BYTES()
{
return (n + 7) / 8;
}
int getN1N2_BYTES()
{
return (n1 * n2 + 7) / 8;
}
HQCEngine getEngine()
{
return hqcEngine;
}
public int getSessionKeySize()
{
return k * 8;
}
public String getName()
{
return name;
}
}