A BigInt library for arbitrary-sized unsigned integers in C++.
-
The BigIntLib was produced primarily for positive integers of arbitrary size.
-
The integers are stored in a vector, so are fairly efficient in terms of memory.
-
They can be made to represent negative integer, following slight modifications. This is is not done because the primary purpose of this class was to support calculations in RSA encryption.
-
Written circa 2011.