secp256k1U128Mul static method
Implementation
static void secp256k1U128Mul(Secp256k1Uint128 r, BigInt a, BigInt b) {
// r.r = (a * b).toUnsigned128;
r.set(a * b);
}
static void secp256k1U128Mul(Secp256k1Uint128 r, BigInt a, BigInt b) {
// r.r = (a * b).toUnsigned128;
r.set(a * b);
}