moreThanHalfN static method

bool moreThanHalfN(
  1. BigInt n
)

if a number is bigger than CURVE.n/2

Implementation

static bool moreThanHalfN(BigInt n) => n > (N >> 1);