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

public interface GCMMultiplier
{
    void init(byte[] H);
    void multiplyH(byte[] x);
}