1package org.bouncycastle.crypto.modes.gcm;
2
3public interface GCMMultiplier
4{
5    void init(byte[] H);
6    void multiplyH(byte[] x);
7}
8