* Wockenfuß, Frank wrote on Wed, Apr 02, 2008 at 09:07 +0200:
> Thank you for that hint.
> I will try to rebuild the class as singleton. This could help,
> but isn't really nice.
I think you'd need multiple classes. For things done once a
program life time, a C++ class (singleton) may not be suite
Wockenfuß wrote:
Hi all,
I have written a class in C++ to easily access functions from OpenSSL from our
products.
In the constructor of my class I do the following lines of code:
threadSetup();
OpenSSL_add_all_digests();
OpenSSL_add_all_ciphers();
OpenSSL_add_a