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

org.bouncycastle.pqc.crypto.newhope.Params Maven / Gradle / Ivy

Go to download

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 Java 1.8 and later with debug enabled.

The newest version!
package org.bouncycastle.pqc.crypto.newhope;

class Params
{
    static final int N = 1024;
    static final int K = 16; /* used in sampler */
    static final int Q = 12289; 

    static final int POLY_BYTES = 1792;
    static final int REC_BYTES = 256;
    static final int SEED_BYTES = 32;     // care changing this one - connected to digest size used.
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy