org.bouncycastle.pqc.crypto.picnic.LowmcConstantsL1 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.picnic;
import org.bouncycastle.util.Exceptions;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class LowmcConstantsL1
extends LowmcConstants
{
LowmcConstantsL1()
{
InputStream input = LowmcConstants.class.getResourceAsStream("lowmcL1.properties");
Properties props = new Properties();
// load a properties file
try
{
props.load(input);
}
catch (IOException e)
{
throw Exceptions.illegalStateException("unable to load Picnic properties: " + e.getMessage(), e);
}
// Parameters for security level L1
// Block/key size: 128
// Rounds: 20
linearMatrices = ReadFromProperty(props, "linearMatrices", 40960);
roundConstants = ReadFromProperty(props, "roundConstants", 320);
keyMatrices = ReadFromProperty(props, "keyMatrices", 43008);
LMatrix = new KMatrices(20, 128, 4, linearMatrices);
KMatrix = new KMatrices(21, 128, 4, keyMatrices);
RConstants = new KMatrices(0, 1, 4, roundConstants);
// Parameters for security level L1, full s-box layer
// Block/key size: 129
// Rounds: 4
// Note that each 129-bit row of the matrix is zero padded to 160 bits (the next multiple of 32)
linearMatrices_full = ReadFromProperty(props, "linearMatrices_full", 12800);
keyMatrices_full = ReadFromProperty(props, "keyMatrices_full", 12900);
keyMatrices_inv = ReadFromProperty(props, "keyMatrices_inv", 2850);
linearMatrices_inv = ReadFromProperty(props, "linearMatrices_inv", 12800);
roundConstants_full = ReadFromProperty(props, "roundConstants_full", 80);
LMatrix_full = new KMatrices(4, 129, 5, linearMatrices_full);
LMatrix_inv = new KMatrices(4, 129, 5, linearMatrices_inv);
KMatrix_full = new KMatrices(5, 129, 5, keyMatrices_full);
KMatrix_inv = new KMatrices(1, 129, 5, keyMatrices_inv);
RConstants_full = new KMatrices(4, 1, 5, roundConstants_full);
}
}