RE: Enumerating supported algorithms

2005-10-12 Thread Frédéric Donnat
Hi, In fact, to see if algorithm are really available, you could OPENSSL_add_All_algorithm() (or a similar function OPENSSL_add_all_digest()), and then try to get them using their name using some EVP_get_digestbyname(). hope it could help. Fred -Original Message- From: Dmitry

RE: Enumerating supported algorithms

2005-10-12 Thread Dmitry Belyavsky
Greetings! On Wed, 12 Oct 2005, [Windows-1252] Fr?d?ric Donnat wrote: In fact, to see if algorithm are really available, you could OPENSSL_add_All_algorithm() (or a similar function OPENSSL_add_all_digest()), and then try to get them using their name using some EVP_get_digestbyname().

Re: Enumerating supported algorithms

2005-10-12 Thread Nils Larsch
On Wed, Oct 12, 2005, Dmitry Belyavsky wrote: Greetings! What shall I look at whether I want to enumerate all, for example, digest algorithms supported in a particular build? you could use OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_MD_METH, ...) to get a list of all algorithms added by