pow5 function

BigInt pow5(
  1. BigInt v
)

Implementation

BigInt pow5(BigInt v) {
  BigInt o = v * v;
  return (v * o * o) % F;
}