org.testifyproject.bouncycastle.crypto.ec.ECUtil Maven / Gradle / Ivy
package org.testifyproject.bouncycastle.crypto.ec;
import java.math.BigInteger;
import java.security.SecureRandom;
import org.testifyproject.bouncycastle.math.ec.ECConstants;
class ECUtil
{
static BigInteger generateK(BigInteger n, SecureRandom random)
{
int nBitLength = n.bitLength();
BigInteger k;
do
{
k = new BigInteger(nBitLength, random);
}
while (k.equals(ECConstants.ZERO) || (k.org.testifyproject.testifyprojectpareTo(n) >= 0));
return k;
}
}