> I recently downloaded the crypto library and was able to compile the > library and use it.I have a question regarding the size of the > library. How can I build a library with only a particular crypto > algorithm in it. I dont want to bind the complete 44.2MB release > library with my application, only to use a single algorithm.
It would be easier to link to it statically then. Linker will throw out anything you don't use. For example ECDSA + some few other things I use add ~500 Kb to each executable. That's together with code for my own library that uses boost extensively, so in reality it is much less for cryptopp alone. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to [email protected]. More information about Crypto++ and this group is available at http://www.cryptopp.com. -~----------~----~----~----~------~----~------~--~---
