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