multiMillerLoop method

Executes the multi-Miller loop for the given list of term pairs.

Implementation

@override
MillerLoopResultBls12 multiMillerLoop(
  List<(G1NativeAffinePoint, G2NativePrepared)> terms,
) {
  final adder = MillerLoopDriverBls12(terms: terms, index: 0);
  final tmp = Bls12PairingUtils.millerLoop(adder);
  return MillerLoopResultBls12(tmp);
}