• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.bouncycastle.crypto.modes.gcm;
2 
3 public interface GCMExponentiator
4 {
init(byte[] x)5     void init(byte[] x);
exponentiateX(long pow, byte[] output)6     void exponentiateX(long pow, byte[] output);
7 }
8