> I can't find any reasonable documentation or examples. What libraries > do I need to import in a C++ application to use Crypto++? Do I need to > link to the library ?
Normally yes, as with other shared libraries you have bunch of headers, a .dll and a .lib. Include headers, use the classes, link to lib and you will get load time dependency on dll (so that your executable won't start without it). On *nix systems you just -lcryptopp (or whatever the name without prefix and suffix is) and gcc will figure out what to link, assuming it can find .a or .so file. (Can't be more specific, I link to crypto statically using my own project) --~--~---------~--~----~------------~-------~--~----~ 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. -~----------~----~----~----~------~----~------~--~---
