package org.bouncycastle.crypto.modes.gcm;
public interface GCMExponentiator
{
void init(byte[] x);
void exponentiateX(long pow, byte[] output);
}
package org.bouncycastle.crypto.modes.gcm;
public interface GCMExponentiator
{
void init(byte[] x);
void exponentiateX(long pow, byte[] output);
}