Hello.

I am interested in mainly using the following functions which are part
of the Crypto++ library:

string EncryptString(const char *plaintext, const char *passPhrase);
string DecryptString(const char *ciphertext, const char *passPhrase);

void EncryptFile(const char *in, const char *out, const char
*passPhrase);
void DecryptFile(const char *in, const char *out, const char
*passPhrase);

Is there anyway that I can compile and create a samaller size lib file
in which I could link statically to my project ? The reason being I
find that the compiled default lib is too large and has uneccessary
exported functions that I do not need. I am looking to make the
library somewhat smaller.....

Can anyone help ?

Thanks

Victor

-- 
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.

Reply via email to