org.bouncycastle.crypto.modes.kgcm.Tables8kKGCMMultiplier_256 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.kgcm;
public class Tables8kKGCMMultiplier_256
implements KGCMMultiplier
{
private long[][] T;
public void init(long[] H)
{
if (T == null)
{
T = new long[256][KGCMUtil_256.SIZE];
}
else if (KGCMUtil_256.equal(H, T[1]))
{
return;
}
// T[0] = 0
// T[1] = H
KGCMUtil_256.copy(H, T[1]);
for (int n = 2; n < 256; n += 2)
{
// T[2.n] = x.T[n]
KGCMUtil_256.multiplyX(T[n >> 1], T[n]);
// T[2.n + 1] = T[2.n] + T[1]
KGCMUtil_256.add(T[n], T[1], T[n + 1]);
}
}
public void multiplyH(long[] z)
{
long[] r = new long[KGCMUtil_256.SIZE];
KGCMUtil_256.copy(T[(int)(z[KGCMUtil_256.SIZE - 1] >>> 56) & 0xFF], r);
for (int i = (KGCMUtil_256.SIZE << 3) - 2; i >= 0; --i)
{
KGCMUtil_256.multiplyX8(r, r);
KGCMUtil_256.add(T[(int)(z[i >>> 3] >>> ((i & 7) << 3)) & 0xFF], r, r);
}
KGCMUtil_256.copy(r, z);
}
}