SSL_CTX_get_client_CA_list

Return the stack of CA names the context will send when requesting a client certificate.

Synopsis

Declared in <openssl/ssl.h>

stack_st_X509_NAME*
SSL_CTX_get_client_CA_list(SSL_CTX const* s);

Return Value

Stack of X509_NAME objects (do not free), or NULL if none are configured.

Parameters

NameDescription
sSSL context to query.