SSL_get_client_ciphers

Return the stack of ciphers offered by the client (server-side only).

Synopsis

Declared in <openssl/ssl.h>

stack_st_SSL_CIPHER*
SSL_get_client_ciphers(SSL const* s);

Return Value

Stack of matching SSL_CIPHER objects, or NULL if not in server mode / unavailable; do not free.

Parameters

NameDescription
sServer SSL connection that has received a ClientHello.