Consider this method that works well:
public static bool mightBePrime(int N) {
BigInteger a = rGen.Next (1, N-1);
return modExp (a, N - 1, N) == 1;
}
Now, in order to fulfill a requirement of the class I'm taking, mightBePrime
must accept a BigInteger
N, but that means that I need a different way to generate my random BigInteger
a
.
My first idea was to do something like BigInteger a = (N-1) * rGen.NextDouble ()
, but a BigInteger
can't be multiplied by a double
.
How can I generate a random BigInteger
between 1 and N-1, where N is a BigInteger
?
BigInteger bigInteger = maxLimit. subtract(minLimit); Declare a Random object and find the length of the maxLimit: Random randNum = new Random(); int len = maxLimit. bitLength(); Now, set a new B integer with the length and the random object created above.
Use randrnage() to generate random integer within a range Use a random. randrange() function to get a random integer number from the given exclusive range by specifying the increment. For example, random. randrange(0, 10, 2) will return any random number between 0 and 20 (like 0, 2, 4, 6, 8).
You can just type: int number = (int)(Math. random() * 100);
BigInteger 1 digit = 70B (ex: new BigInteger("9")) BigInteger 20 digits = 80B (ex: new BigInteger("12345678901234567890")) BigInteger 100 digits = 112B.
Paul suggested in a comment that I generate a number using random bytes, then throw it away if it's too big. Here's what I came up with (Marcel's answer + Paul's advice):
public static BigInteger RandomIntegerBelow(BigInteger N) {
byte[] bytes = N.ToByteArray ();
BigInteger R;
do {
random.NextBytes (bytes);
bytes [bytes.Length - 1] &= (byte)0x7F; //force sign bit to positive
R = new BigInteger (bytes);
} while (R >= N);
return R;
}
http://amirshenouda.wordpress.com/2012/06/29/implementing-rsa-c/ helped a little too.
Use the Random-Class
public BigInteger getRandom(int length){
Random random = new Random();
byte[] data = new byte[length];
random.NextBytes(data);
return new BigInteger(data);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With