I need to implement RSA algorithm in Java. I've found the best solution using BigIntegers, problem is that I need to work only with ints or longs.
The encrypting is done like this: M[i]^e mod n where M[i] is an input char and e is a key value. I tried using the ASCII codes of chars, and with codes such as 115 and 116 I quickly get out of range. How can I solve the problem? Thanks in advance.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
| show 5 more comments |
|
You may have a look at modular exponentiation. This way you overcome most of the overflows in your calculations. |
|||
|
|
|
To clarify a bit...
If you recall from basic math,
So, you can split your crazy high powers into lower powers and then take the modulo of their value (thereby keeping the value small), and then recombine them afterwards:
I don't know if this counts as "giving it away" but my students had trouble with this once and I had no problem showing them this trick. Besides, I presume this is more of an exercise in recursion than anything else. |
|||
|
|
n<2^32usinglongs is easy(i^2 won't overflow since i<n and n^n<2^64). Else you probably need to use int/long arrays. You just need to implement one operation: ModPow. For example using the square-and-multiply algorithm. – CodesInChaos May 21 '11 at 7:26