1package org.bouncycastle.crypto.modes.gcm;
2
3public interface GCMExponentiator
4{
5    void init(byte[] x);
6    void exponentiateX(long pow, byte[] output);
7}
8