Lines Matching refs:callback
5 SSL_CTX_set_client_cert_cb, SSL_CTX_get_client_cert_cb - handle client certificate callback function
19 SSL_CTX_set_client_cert_cb() sets the I<client_cert_cb> callback, that is
23 When I<client_cert_cb> is NULL, no callback function is used.
25 SSL_CTX_get_client_cert_cb() returns a pointer to the currently set callback
28 I<client_cert_cb> is the application defined callback. If it wants to
51 library. Using the callback function it is possible to implement a proper
55 If a callback function is defined and no certificate was yet defined for the
56 SSL object, the callback function will be called.
57 If the callback function returns a certificate, the OpenSSL library
62 If the callback returns no certificate, the OpenSSL library will not send
68 NULL if the callback is not set.
85 the concept of the callback function (to allow the choice from several
88 Once the SSL object has been used in conjunction with the callback function,