summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/GCMExponentiator.java
blob: e1cc5c76ba329c3e929f2309c1bd14c9162fda26 (plain)
1
2
3
4
5
6
7
package org.bouncycastle.crypto.modes.gcm;

public interface GCMExponentiator
{
    void init(byte[] x);
    void exponentiateX(long pow, byte[] output);
}