I don't suppose you would like to clue us in on how to use the new mode machinery? It has totally changed. Here a typical bit of code I need to update:
BlowfishEncryption encryption(reinterpret_cast<const byte*>(key, strlen(key);
CBCPaddedEncryptor cbcEncryptor(encryption,
reinterpret_cast<const byte*>(IV),
new StrSink(outCipherText));
cbcEncryptor.PutMessageEnd(reinterpret_cast<const byte*>(inText), inTextLength);
What is the new way of accomplishing this?
Aparajita Victory-Heart Productions [EMAIL PROTECTED] www.aparajitaworld.com
