mulBy3b method

Implementation

Bls12NativeFp mulBy3b(Bls12NativeFp a) {
  a = a + a;
  a = a + a;
  return a + a + a;
}