[#SSL_get_cipher_list] = SSL_get_cipher_list :mrdocs: Return the name of the n‐th enabled cipher for a connection (0‐based preference order). == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- char const* SSL_get_cipher_list( xref:SSL.adoc[SSL] const* s, int n); ---- == Return Value Static cipher name, or NULL if `s` is NULL or `n` is out of range. == Parameters [cols="1,4"] |=== | Name| Description | *s* | SSL connection to query. | *n* | Index into the preference‐ordered cipher list. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#