I am using dev C++ IDE to create a program to run the RSA algorithm. The algorithm, as is known, uses very large numbers. Numbers with 24-26 digits. The long long data types only supports upto 20 or so digits. How do I handle such huge numbers in C++? Is there a way I can change the limits/size/range of the long data type?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Due to popular request: There are a lot of bignumber libraries (all serving a different audience). Examples are:
Also the wikipedia article Arbitrary precision arithmetic lists some. Google reveals even more. |
|||
|
|
|
You can write a class or struct toencapsulation and may be like BigInt in java
|
|||
|
|

long longis going to be long-enough). Something like the BN library from OpenSSL, for example. – WhozCraig Jan 17 at 10:07