aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/modes/gcm/GCMExponentiator.java
blob: 1ed19fbdc46a3308adf9ecba6b848e8be38b3c9a (plain)
1
2
3
4
5
6
7
package org.spongycastle.crypto.modes.gcm;

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