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

org.bouncycastle.pqc.crypto.cmce.GF 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 JDK 1.8 and up. Note: this package includes the NTRU encryption algorithms.

There is a newer version: 1.77
Show newest version
package org.bouncycastle.pqc.crypto.cmce;

abstract class GF
{
    GF()
    {
    }

    final short gf_iszero(short a)
    {
        return (short)((a - 1) >> 31);
    }

    abstract protected void gf_mul_poly(int length, int[] poly, short[] out, short[] left, short[] right, int[] temp);
    abstract protected void gf_sqr_poly(int length, int[] poly, short[] out, short[] input, int[] temp);

    abstract protected short gf_frac(short den, short num);
    abstract protected short gf_inv(short input);
    abstract protected short gf_mul(short left, short right);
    abstract protected int gf_mul_ext(short left, short right);
    abstract protected short gf_reduce(int input);
    abstract protected short gf_sq(short input);
    abstract protected int gf_sq_ext(short input);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy