calculateU static method

BigInt calculateU(
  1. Digest digest,
  2. BigInt N,
  3. BigInt? A,
  4. BigInt? B,
)

Implementation

static BigInt calculateU(Digest digest, BigInt N, BigInt? A, BigInt? B) {
  return hashPaddedPair(digest, N, A, B);
}