conditionalSelect method
Conditional selection: returns b if choice is true, a otherwise.
Implementation
@override
PallasFp conditionalSelect(PallasFp a, PallasFp b, bool choice) {
return PallasFp.conditionalSelect(a, b, choice);
}
Conditional selection: returns b if choice is true, a otherwise.
@override
PallasFp conditionalSelect(PallasFp a, PallasFp b, bool choice) {
return PallasFp.conditionalSelect(a, b, choice);
}