Lines Matching refs:certificate

5 SSL_CTX_set_client_cert_cb, SSL_CTX_get_client_cert_cb - handle client certificate callback function
20 called when a client certificate is requested by a server and no certificate
29 set a certificate, a certificate/private key combination must be set
31 certificate will be installed into I<ssl>, see the NOTES and BUGS sections.
32 If no certificate should be set, "0" has to be returned and no certificate
42 During a handshake (or renegotiation) a server may request a certificate
43 from the client. A client certificate must only be sent, when the server
46 When a certificate was set using the
49 certificate is sent, if it matches the list of acceptable CAs sent by the
52 selection routine or to allow a user interaction to choose the certificate to
55 If a callback function is defined and no certificate was yet defined for the
57 If the callback function returns a certificate, the OpenSSL library
58 will try to load the private key and certificate data into the SSL
60 Thus it will permanently install the certificate and key for this SSL
62 If the callback returns no certificate, the OpenSSL library will not send
63 a certificate.
72 The I<client_cert_cb> cannot return a complete certificate chain, it can
73 only return one client certificate. If the chain only has a length of 2,
74 the root CA certificate may be omitted according to the TLS standard and
77 to leave out the root CA certificate). This can only be accomplished by
79 certificate store for the SSL_CTX object (resulting in having to add
84 therefore probably can only apply for one client certificate, making
89 the certificate will be set for the SSL object and will not be cleared