EVP_add_cipher_alias
hallo, why is EVP_add_cipher_alias not exported from the shared library? thank you, -alexm 17:39 12/08/2003 __ OpenSSL Project http://www.openssl.org User Support Mailing List
Re: EVP_add_cipher_alias
On Tue, Aug 12, 2003 at 05:47:26PM -0500, alex medvedev wrote: > hallo, > > why is EVP_add_cipher_alias not exported from the shared library? Because it is just a macro. When #including it is mapped to the actually used function OBJ_NAME_add(...) with the appropriate parameters. Bes