getLower32 method
Returns the lowest 32 bits of the field element.
Implementation
@override
int getLower32() {
final tmp = PallasFp.montgomeryReduce(
limbs[0],
limbs[1],
limbs[2],
limbs[3],
BigInt.zero,
BigInt.zero,
BigInt.zero,
BigInt.zero,
);
return tmp.limbs[0].toU32;
}