blob: ee75f31fbd16010402228f76ed964771796e6056 [file] [log] [blame]
package org.bouncycastle.crypto.ec;
import java.math.BigInteger;
import java.security.SecureRandom;
import org.bouncycastle.math.ec.ECConstants;
import org.bouncycastle.util.BigIntegers;
class ECUtil
{
static BigInteger generateK(BigInteger n, SecureRandom random)
{
int nBitLength = n.bitLength();
BigInteger k;
do
{
k = BigIntegers.createRandomBigInteger(nBitLength, random);
}
while (k.equals(ECConstants.ZERO) || (k.compareTo(n) >= 0));
return k;
}
}