calculateK static method

BigInt calculateK(
  1. Digest digest,
  2. BigInt N,
  3. BigInt g
)

Implementation

static BigInt calculateK(Digest digest, BigInt N, BigInt g) {
  return hashPaddedPair(digest, N, N, g);
}