I'm about to implement the DSA algorithm, but there is a problem:

choose "p", a prime number with L bits, where 512 <= L <= 1024 and L is a multiple of 64

How to implement a random generator of that number? Int64 has "only" 63 bits length

link|improve this question

62% accept rate
5  
standard comment: "That's OK for study/experimentation but don't you dare use that in production". – Henk Holterman Jun 3 '10 at 12:09
feedback

2 Answers

up vote 9 down vote accepted

You can generate a random number with n bits using this code:

var rng = new RNGCryptoServiceProvider();
byte[] bytes = new byte[n / 8];
rng.GetBytes(bytes);

BigInteger p = new BigInteger(bytes);

The result is, of course, random and not necessarily a prime.

The BigInteger class was introduced in the .NET 4.0 Framework.


For generating large prime numbers, Wikipedia says:

For the large primes used in cryptography, it is usual to use a modified form of sieving: a randomly-chosen range of odd numbers of the desired size is sieved against a number of relatively small odd primes (typically all primes less than 65,000). The remaining candidate primes are tested in random order with a standard primality test such as the Miller-Rabin primality test for probable primes.

So you could do something like this:

var p = Enumerable.Range(0, numberOfCandidates)
                  .Select(i => RandomOddNumber(bits))
                  .Where(x => !primesLessThan65000.Contains(x))
                  .Where(x => PrimalityTest(x))
                  .FirstOrDefault();
link|improve this answer
@AakashM - Likely enough. Guessing is a good strategy for getting a prime number, not to mention a prime random number. – Kobi Jun 3 '10 at 12:08
Why are you dividing by 8? Does that ensure it to be a multiple of 64 ? – Filip Ekberg Jun 3 '10 at 12:12
2  
i downvoted because Random class is not good for cryptographic purposes. and your quote from wiki gives only slight sense of how to make prime. – Andrey Jun 3 '10 at 12:15
@Andrey: edited for more randomness. – dtb Jun 3 '10 at 12:17
1  
@Henk Holterman: Is RandomNumberGenerator.Create() preferable to new RNGCryptoServiceProvider? – dtb Jun 3 '10 at 12:25
show 6 more comments
feedback

If you are implementing DSA as a homework, or self learning or other educational purpose then you can use small keys, Int64 (or even Int32) will be enough.

If you are writing production code them use DSACryptoServiceProvider and save your time.

link|improve this answer
1  
I don't see how this adds any value at all to his question? He isn't looking for another way to solve it.. This might just be one of the cases where he needs that type of code, maybe the other use-case wasn't defined here. – Filip Ekberg Jun 3 '10 at 12:15
1  
@Filip Ekberg: do not try to guess for asker. he wrote very clear - DSA. May be he doesn't know that there is implementation in .net. People should not implement such critical things unless they are security pros, because their system will be vulnerable. If use case is different - there are all needed classes in .net for security. – Andrey Jun 3 '10 at 12:17
@Andrey, I did not "guess" for the asker. I simply point out that You didn't answer anything of what he asked, why would the reason for him doing this matter? If he wants to create this algorithm himself, fine, let him. And you actually don't know if he is a security pro or not, he might just not know the framework well enough to find the BigInteger.. – Filip Ekberg Jun 3 '10 at 12:20
1  
@Filip Ekberg - yes, i didn't directly answered the question, but gave more general and preferred solution. If he wants to do this for himself he don't need that big keys. if it is for real so he should not do this at all. and i don't think that person asking for such basic things is security pro. i am not one also, but i have some sense. implementing security algorithms for real use it great hole. – Andrey Jun 3 '10 at 12:25
1  
@Filip Ekberg "you can use small keys, Int64 (or even Int32) will be enough." – Andrey Jun 3 '10 at 12:35
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.