Hi again , even followed your instructions from "Codeguru - Compiling
and Integrating Crypto++ into the Microsoft Visual C++ Environment".
I don't seem to get it working, but it works so great in the cryptest
example. It seems that its too hard to make a DLL based on crypto++.
Could you point to me to any examples or tutorials related to the
subject?
(Just in case there is something weird , I paste here the function
from the cryptest example)
--- Code sample ---
string EncryptString(const char *instr, const char *passPhrase)
{
string outstr;
DefaultEncryptorWithMAC encryptor(passPhrase, new HexEncoder(new
StringSink(outstr)));
encryptor.Put((byte *)instr, strlen(instr));
encryptor.MessageEnd();
return outstr;
}
---- End code sample ----
Thank you in advance
--~--~---------~--~----~------------~-------~--~----~
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.
-~----------~----~----~----~------~----~------~--~---