[#EVP_ASYM_CIPHER_names_do_all] = EVP_ASYM_CIPHER_names_do_all :mrdocs: Call `fn` for each synonymous name of an asymmetric‐cipher algorithm implementation. == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int EVP_ASYM_CIPHER_names_do_all( xref:EVP_ASYM_CIPHER.adoc[EVP_ASYM_CIPHER] const* cipher, void(* fn)(char const*, void*), void* data); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *cipher* | Asymmetric cipher method whose names are enumerated. | *fn* | Callback receiving each name and `data.` | *data* | Opaque pointer forwarded to `fn.` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#