Re: Using multiple threads

2015-08-10 Thread Jeffrey Walton
On Monday, August 10, 2015 at 3:18:56 AM UTC-4, Ilya Bizyaev wrote: > > Yes, I now see there's no sense in multithreading for my app. When using > GUI mode, the speed is about 256 Mib/s, in console mode - about 532 Mib/s. > That's pretty much, and I won't use multithreading. Thanks, Jeffrey! >

Re: Using multiple threads

2015-08-10 Thread Ilya Bizyaev
Yes, I now see there's no sense in multithreading for my app. When using GUI mode, the speed is about 256 Mib/s, in console mode - about 532 Mib/s. That's pretty much, and I won't use multithreading. Thanks, Jeffrey! -- -- You received this message because you are subscribed to the "Crypto++ U

Re: Using multiple threads

2015-08-09 Thread Jeffrey Walton
On Saturday, August 8, 2015 at 1:51:56 PM UTC-4, Ilya Bizyaev wrote: > > Hello! > I want to change my application to process data in multiple threads. It > uses AES/GCM (128 for the header and 256 for the file). > Is what I want possible? Does Crypto++ use multiple threads itself? >From Readme

Re: Using multiple threads

2015-08-08 Thread Jean-Pierre Münch
Am 08.08.2015 um 19:51 schrieb Ilya Bizyaev: > Hello! > I want to change my application to process data in multiple threads. It uses > AES/GCM (128 for the header and 256 for the file). > Is what I want possible? If you use as many AES-GCM instances as you have threads it's certainly possible. M