• Home
  • Raw
  • Download

Lines Matching refs:certificate

12 - set peer certificate verification parameters
47 SSL_CTX_set_verify_depth() sets the maximum B<depth> for the certificate chain
50 SSL_set_verify_depth() sets the maximum B<depth> for the certificate chain
57 sent. A certificate callback will need to be set via
58 SSL_CTX_set_client_cert_cb() if no certificate is provided at initialization.
73 B<Server mode:> the server will not send a client certificate request to the
74 client, so the client will not send a certificate.
77 server will send a certificate which will be checked. The result of the
78 certificate verification process can be checked after the TLS/SSL handshake
84 B<Server mode:> the server sends a client certificate request to the client.
85 The certificate returned (if any) is checked. If the verification process
93 B<Client mode:> the server certificate is verified. If the verification process
96 the verification failure. If no server certificate is sent, because an
101 B<Server mode:> if the client did not return a certificate, the TLS/SSL
109 B<Server mode:> only request a client certificate once during the
110 connection. Do not ask for a client certificate again during
111 renegotiation or post-authentication if a certificate was requested
119 B<Server mode:> the server will not send a client certificate request
145 certificate chain needed to reach a trusted issuer is longer than B<depth+2>,
147 The depth count is "level 0:peer certificate", "level 1: CA certificate",
148 "level 2: higher level CA certificate", and so on. Setting the maximum
152 allowing for the peer certificate, at most 100 intermediate CA certificates and
153 a final trust anchor certificate.
158 the certificate in question was passed (preverify_ok=1) or not
160 for the certificate chain verification.
162 The certificate chain is checked starting with the deepest nesting level
163 (the root CA certificate) and worked upward to the peer's certificate.
167 X509_CTX_store_* functions B<verify_callback> can locate the certificate
169 found for a certificate, B<verify_callback> is called with B<preverify_ok>=1
190 certificate or certificate callback to its configuration before it can
195 extension. When the client returns a certificate the verify callback will be
198 Only one certificate request may be outstanding at any time.
225 All verification errors are printed; information about the certificate chain
266 * Catch a too long certificate chain. The depth limit set using
328 /* The client sent a certificate which verified OK */