org.bouncycastle.crypto.modes.gcm.BasicGCMMultiplier Maven / Gradle / Ivy
package org.bouncycastle.crypto.modes.gcm;
public class BasicGCMMultiplier implements GCMMultiplier
{
private int[] H;
public void init(byte[] H)
{
this.H = GCMUtil.asInts(H);
}
public void multiplyH(byte[] x)
{
int[] t = GCMUtil.asInts(x);
GCMUtil.multiply(t, H);
GCMUtil.asBytes(t, x);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy