Hi All, I am trying out parallel encryption but without any success. Have any of you tried out parallel encryption?
CODE: StreamTransformationFilter ab( encryptor, new CryptoPP::StringSink( CipherText ) ); ab.Put( (const byte*)data, data_size ); ab.MessageEnd(); Cipher: AES Cipher mode: CTR I tried to parallelize the above code but once I set more than 1 thread running the above code, the output (cipher text) will be wrong when I diff (linux command) with a correct file. I have even tried setting individual "StreamTransformationFilter" & "encryptor" for each thread. Can someone give back some feedback on how to work on parallel encryption? The flow of the data in the program should be correct as I have already tested my program with compression. --~--~---------~--~----~------------~-------~--~----~ 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. -~----------~----~----~----~------~----~------~--~---
