org.bouncycastle.pqc.crypto.cmce.GF 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.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);
}