exp method

int exp(
  1. int a
)

@return 2 to the power of a in GF(size)

Implementation

int exp(int a) {
  return _expTable[a];
}