![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.org.bouncycastle.math.raw.Nat576 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-jwt-nodependencies Show documentation
Show all versions of java-jwt-nodependencies Show documentation
This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).
The newest version!
package org.bouncycastle.math.raw;
import java.math.BigInteger;
import org.bouncycastle.util.Pack;
public abstract class Nat576
{
public static void copy64(long[] x, long[] z)
{
z[0] = x[0];
z[1] = x[1];
z[2] = x[2];
z[3] = x[3];
z[4] = x[4];
z[5] = x[5];
z[6] = x[6];
z[7] = x[7];
z[8] = x[8];
}
public static long[] create64()
{
return new long[9];
}
public static long[] createExt64()
{
return new long[18];
}
public static boolean eq64(long[] x, long[] y)
{
for (int i = 8; i >= 0; --i)
{
if (x[i] != y[i])
{
return false;
}
}
return true;
}
public static long[] fromBigInteger64(BigInteger x)
{
if (x.signum() < 0 || x.bitLength() > 576)
{
throw new IllegalArgumentException();
}
long[] z = create64();
int i = 0;
while (x.signum() != 0)
{
z[i++] = x.longValue();
x = x.shiftRight(64);
}
return z;
}
public static boolean isOne64(long[] x)
{
if (x[0] != 1L)
{
return false;
}
for (int i = 1; i < 9; ++i)
{
if (x[i] != 0L)
{
return false;
}
}
return true;
}
public static boolean isZero64(long[] x)
{
for (int i = 0; i < 9; ++i)
{
if (x[i] != 0L)
{
return false;
}
}
return true;
}
public static BigInteger toBigInteger64(long[] x)
{
byte[] bs = new byte[72];
for (int i = 0; i < 9; ++i)
{
long x_i = x[i];
if (x_i != 0L)
{
Pack.longToBigEndian(x_i, bs, (8 - i) << 3);
}
}
return new BigInteger(1, bs);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy