Re: Detecting available ciphers/hash/encryption mode

2012-06-05 Thread Adnan RIHAN
Hello, Also, there are already cross-platform C++ wrappers around OpenSSL, for example QtNetwork (QSslSocket) and POCO (the Crypto package)(http://pocoproject.org/). It's more about the crypto side of OpenSSL, thanks. I'll abandon my project if POCO can be what I need (I will rewrite my

Re: Detecting available ciphers/hash/encryption mode

2012-06-04 Thread Marco Molteni
Hi, I would start from the command-line utility openssl list-cipher-algorithms and follow the source code to see which functions it calls. See the manual page (man openssl) for some other command-line options in the same spirit that might be useful. Also, there are already cross-platform C++

Re: Detecting available ciphers/hash/encryption mode

2012-06-04 Thread Michel
Hello Mr. RIHAN, You should find some clues searching around OBJ_NAME_do_all_sorted() or looking at apps/enc.c, crypto/evp/names.c, crypto/objects/o_names.c. Good luck. Le 03/06/2012 09:00, Adnan RIHAN a écrit : Hello again! Nobody knows ? -- Le jeudi 31 mai 2012 à 17:03, Adnan RIHAN a