Hi All,
I use crypto 5.4 and I notice a strange problem using an automated
test for testing a wrapping class of StringSource I have. This
wrapping class only call StringSource, but the problems is that
sometimes (not regularly) StringSource throw an exception even if this
automated test use always the same string to crypt and then decrypt,
and the same passphrase
try
{
StringSink *ssink = new StringSink(out);
DefaultEncryptorWithMAC * mac = new
DefaultEncryptorWithMAC(passPhrase, ssink);
StringSource s((const byte *)in, len, true, mac);
}
catch (...)
{
result = false;
}
where is the problem?
thx you very much
w
--~--~---------~--~----~------------~-------~--~----~
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.
-~----------~----~----~----~------~----~------~--~---