vote up 1 vote down star

Hey everyone,

I am using the RSA Algorithm for encryption/decryption, and in order to decrypt the files you have to deal with some pretty big values. More specifically, things like

P = C^d % n = 62^65 % 133

Now that is really the only calculations that ill be doing. I have tried using Matt McCutchen's BigInteger Library, but I am getting a lot of compiler errors during Linking.

(stuff like: encryption.o(.text+0x187):encryption.cpp: undefined reference to `BigInteger::BigInteger(int)'

encryption.o(.text+0x302):encryption.cpp: undefined reference to `operator<<(std::ostream&, BigInteger const&)'

encryption.o(.text$ZNK10BigIntegermlERKS[BigInteger::operator*(BigInteger const&) const]+0x63):encryption.cpp: undefined reference to `BigInteger::multiply(BigInteger const&, BigInteger const&)'

So I was wondering what would be the best way to go about handling the really big integers that come out of the RSA Algorithm.

I heard that a possibility would be to declare your variables as a double long?

so...

long long decryptedCharacter;

but im not sure exactly how big of an integer that can store

Thanks in advnace,

Tomek

flag

15 Answers

vote up 0 vote down

I used GMP when I wrote the RSA implementation.

link|flag
vote up 1 vote down

Openssl also has a Bignum type you can use. I've used it and it works well. Easy to wrap in an oo language like C++ or objective-C, if you want.

https://www.openssl.org/docs/crypto/bn.html

Also, in case you didn't know, to find the answer to the equation of this form x^y % z, look up an algorithm called modular exponentiation. Most crypto or bignum libraries will have a function specifically for this computation.

link|flag
vote up 0 vote down

I have had a lot of success using the LibTomCrypt library for my crypto needs. It's fast, lean, and portable. It can do your RSA for you, or just handle the math if you want.

link|flag
vote up 0 vote down

If you're not implementing RSA as a school assignment or something, then I'd suggest looking at the crypto++ library http://www.cryptopp.com

It's just so easy to implement crypto stuff badly.

link|flag
vote up 0 vote down

Well for example, I try to compile&run the following program using dev c++

#include iostream

#include "bigint\BigIntegerLibrary.hh"

using namespace std;

int main() { BigInteger a = 65536; cout << (a * a * a * a * a * a * a * a); return 0; }

then i get those errors

Derek, I thought that by including the BigIntegerLibrary.hh file, that the compiler would go through and compile all the necessary files that it will use.

How should I try and compile the program above in order to resolve the linking errors?

-Tomek

link|flag
The compiler has no way of recognizing that a particular .hh file matches a particular .cc file. Filenames needn't have any relation to each other or their contents. – Derek Park Sep 23 '08 at 23:30
You'll need to compile the library and then link to it. I don't know the particulars of Dev-C++, but I would guess that you need to create a new project containing the BigInteger code and the create a dependency from your main project to this new project. – Derek Park Sep 23 '08 at 23:31
Alternatively, you could dump all of the BigInteger sources into the same directory as your project and then just add the .cc files to your main project. This is simpler, but a bit uglier. I would likely do this first, get it working, and then break the code into its own project. – Derek Park Sep 23 '08 at 23:33
vote up 4 vote down

Meta-answer:

If you're using a library for the bigint arithmetic, then ask yourself why you aren't using a library for the whole RSA implementation.

For example, http://www.gnu.org/software/gnu-crypto/ contains an RSA implementation. It has the same license as GMP.

However, they do not have the same license as http://mattmccutchen.net/bigint/, which appears to me to have been placed into the public domain in the US.

link|flag
vote up 2 vote down

Tomek, it sounds like you aren't linking to the BigInteger code correctly. I think you should resolve this problem rather than looking for a new library. I took a look at the source, and BigInteger::BigInteger(int) is most definitely defined. A brief glance indicates that the others are as well.

The link errors you're getting imply that you are either neglecting to compile the BigInteger source, or neglecting to include the resulting object files when you link. Please note that the BigInteger source uses the "cc" extension rather than "cpp", so make sure you are compiling these files as well.

link|flag
vote up 0 vote down

The fact, that you have a problem using some biginteger library doesn't mean, that it's a bad approach.

Using long long is definitely a bad approach.

As others said already using a biginteger library is probably a good approach, but You have to post more detail on haw you use mentioned library for us to be able to help You resolve those errors.

link|flag
vote up 3 vote down

For RSA you need a bignum library. The numbers are way too big to fit into a 64-bit long long. I once had a colleague at university who got an assignment to implement RSA including building his own bignum library.

As it happens, Python has a bignum library. Writing bignum handlers is small enough to fit into a computer science assignment, but still has enough gotchas to make it a non-trivial task. His solution was to use the Python library to generate test data to validate his bignum library.

You should be able to get other bignum libraries.

Alternatively, try implementing a prototype in Python and see if it's fast enough.

link|flag
vote up 6 vote down

I'd suggest using gmp, it can handle arbitrarily long ints and has decent C++ bindings.

afaik on current hardware/sofware long longs are 64bit, so unsigned can handle numbers up to (2**64)-1 == 18446744073709551615 which is quite a bit smaller than numbers you'd have to deal with with RSA.

link|flag
vote up 1 vote down

I would try out the GMP library - it is robust, well tested, and commonly used for this type of code.

link|flag
vote up -1 vote down

Just to note: __int64 and long long are non-standard extensions. Neither one is guaranteed to be supported by all C++ compilers. C++ is based on C89 (it came out in 98, so it couldn't be based on C99)

(C has support for 'long long' since C99)

By the way, I don't think that 64bit integers solve this problem.

link|flag
C++ actually dates back to the early '80s, although you're right in that the current standard predates C99. – Captain Segfault May 18 at 21:07
vote up 0 vote down

Check out your compiler documentation. Some compilers have types defined such as __int64 that give you their size. Maybe you've got some of them available.

link|flag
vote up 1 vote down

To see the size of a long long try this:

#include <stdio.h>

int main(void) {
    printf("%d\n", sizeof(long long));

    return 0;
}

On my machine it returns 8 which means 8 bytes which can store 2^64 values.

link|flag
vote up 0 vote down

A long int is typically 64 bits which would probably not be enough to handle an integer that large. You'll probably need a bigint library of some kind.

See also this question on Stack Overflow

link|flag

Your Answer

Get an OpenID
or

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