SSL_CTX_get_client_cert_cb

Return the client-certificate callback installed on an SSL_CTX.

Synopsis

Declared in <openssl/ssl.h>

int(*
SSL_CTX_get_client_cert_cb(SSL_CTX* ctx))(SSL*, X509**, EVP_PKEY**);

Return Value

Callback that supplies a client certificate and key, or NULL if unset.

Parameters

NameDescription
ctxSSL context to query.