• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.bouncycastle.math.field;
2 
3 import java.math.BigInteger;
4 
5 public interface FiniteField
6 {
getCharacteristic()7     BigInteger getCharacteristic();
8 
getDimension()9     int getDimension();
10 }
11