Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GCMExponentiator.java « gcm « modes « crypto « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}