GCMExponentiator.java revision e1142c149e244797ce73b0e7fad40816e447a817
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