org.bouncycastle.crypto.modes.gcm.Tables1kGCMExponentiator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on 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 Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.crypto.modes.gcm;
import java.util.ArrayList;
import java.util.List;
public class Tables1kGCMExponentiator
implements GCMExponentiator
{
// A lookup table of the power-of-two powers of 'x'
// - lookupPowX2[i] = x^(2^i)
private List lookupPowX2;
public void init(byte[] x)
{
long[] y = GCMUtil.asLongs(x);
if (lookupPowX2 != null && 0L != GCMUtil.areEqual(y, (long[])lookupPowX2.get(0)))
{
return;
}
lookupPowX2 = new ArrayList(8);
lookupPowX2.add(y);
}
public void exponentiateX(long pow, byte[] output)
{
long[] y = GCMUtil.oneAsLongs();
int bit = 0;
while (pow > 0)
{
if ((pow & 1L) != 0)
{
GCMUtil.multiply(y, getPowX2(bit));
}
++bit;
pow >>>= 1;
}
GCMUtil.asBytes(y, output);
}
private long[] getPowX2(int bit)
{
int last = lookupPowX2.size() - 1;
if (last < bit)
{
long[] prev = (long[])lookupPowX2.get(last);
do
{
long[] next = new long[GCMUtil.SIZE_LONGS];
GCMUtil.square(prev, next);
lookupPowX2.add(next);
prev = next;
}
while (++last < bit);
}
return (long[])lookupPowX2.get(bit);
}
}