I need to use some RSA signature scheme for an cross platform library used in an Android and iPhone project. After looking around I've chosen cryptopp, but it is far too big for static linking. Thus I added source and headers to my project in order to only link the relevant parts into my lib. It's still adding a few MB in release build to the final lib.

  1. Is there an easier or more effective way of brining down the size of a library or cryptopp in particular?

  2. I'm not in detail familiar with template generation during compiling. But I remember that templates can add quite a lot of code. Is there a way to stop/improve this (compiler options?)?

  3. If I want to manually remove all source/header files from the project that are not used by my simple usecase, are there any tools to help? Digging through cryptopp with its templates would take quite some time and I'm always in favor of automatic processes ;)

Any help is greatly appreciated!

link|improve this question
feedback

1 Answer

If you want to use crypto++ (and there are many good reasons you'd want to) this is probably a scenario where you're just best off letting the linkers do their job. I was concerned about this some time ago, and I could not do any better by hand than the optimizing linkers could.

I confirmed this by dusting off my old test app that uses crypto++ to generate a new random RSA key, sign a string and verify that string. Here are the numbers I see:

  • libcryptopp.a - crypto++ built for release as a static library using clang++ against the iOS SDK 5.0. There was no special attmept to minimize size, just built with -fvisibility=hidden -fvisibility-inlines-hidden and -Os: 22.5MB

  • Empty app from the default iOS single view template, built with -Os: 34KB

  • The same empty app with "self test" code added that generates a keypair, signs (and therefore hashes) a string using RSA/SHA256, hex encodes it, prints the signature, decodes the signature and verifies the signature over the original string, built with -Os against the libcryptopp.a from my first bullet above: 389KB

The linker seems to be doing a good job here. If you're seeing something drastically different, make sure you're really looking at release binaries.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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