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
feedback
|
|
You can generate a random number with
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:
So you could do something like this:
| |||||||||||||||
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. | |||||||||||||||||||
feedback
|