invert method
Inverse in Fp2
Implementation
@override
Bls12NativeFp2? invert() {
final t = (c0 * c0 + c1 * c1).invert();
if (t == null) return null;
return Bls12NativeFp2(c0: c0 * t, c1: -c1 * t);
}
Inverse in Fp2
@override
Bls12NativeFp2? invert() {
final t = (c0 * c0 + c1 * c1).invert();
if (t == null) return null;
return Bls12NativeFp2(c0: c0 * t, c1: -c1 * t);
}