Home
last modified time | relevance | path

Searched refs:SSL_get_verify_result (Results 1 – 25 of 32) sorted by relevance

12

/openssl/doc/man3/
H A DSSL_get_verify_result.pod5 SSL_get_verify_result - get result of peer certificate verification
11 long SSL_get_verify_result(const SSL *ssl);
15 SSL_get_verify_result() returns the result of the verification of the
20 SSL_get_verify_result() can only return one error code while the verification
23 from SSL_get_verify_result().
26 failure as reported by SSL_get_verify_result().
39 not indicate success. SSL_get_verify_result() is only useful in connection
H A DSSL_get_peer_certificate.pod36 verification state, use L<SSL_get_verify_result(3)>
67 L<ssl(7)>, L<SSL_get_verify_result(3)>,
H A DSSL_set1_host.pod72 whether verification succeeded call L<SSL_get_verify_result(3)>.
92 if (SSL_get_verify_result(ssl) == X509_V_OK) {
103 L<SSL_get_verify_result(3)>.
H A DSSL_CTX_set_ct_validation_callback.pod48 Applications can call L<SSL_get_verify_result(3)> to check the status at
51 See L<SSL_set_verify(3)>, <SSL_get_verify_result(3)>, L<SSL_session_reused(3)>.
130 <SSL_get_verify_result(3)>,
H A DSSL_set_verify_result.pod34 L<ssl(7)>, L<SSL_get_verify_result(3)>,
H A DSSL_CTX_set_verify.pod94 using the L<SSL_get_verify_result(3)> function.
199 L<SSL_get_verify_result(3)> or by maintaining its
348 if (SSL_get_verify_result(ssl) == X509_V_OK) {
357 L<SSL_get_verify_result(3)>,
H A DSSL_get_peer_cert_chain.pod31 not successful (as indicated by SSL_get_verify_result() not returning
H A DSSL_get0_peer_rpk.pod86 L<SSL_get_verify_result(3)>,
H A DSSL_CTX_set_cert_verify_callback.pod93 L<SSL_get_verify_result(3)>,
H A DSSL_CTX_dane_enable.pod291 if (SSL_get_verify_result(ssl) == X509_V_OK) {
302 } else if (SSL_get_verify_result(ssl) == X509_V_OK) {
363 L<SSL_get_verify_result(3)>,
H A DSSL_set1_server_cert_type.pod160 verify_result = SSL_get_verify_result(ssl);
H A DX509_check_host.pod145 L<SSL_get_verify_result(3)>,
/openssl/demos/guide/
H A Dtls-client-block.c209 if (SSL_get_verify_result(ssl) != X509_V_OK) in main()
211 X509_verify_cert_error_string(SSL_get_verify_result(ssl))); in main()
H A Dquic-client-block.c231 if (SSL_get_verify_result(ssl) != X509_V_OK) in main()
233 X509_verify_cert_error_string(SSL_get_verify_result(ssl))); in main()
H A Dtls-client-non-block.c163 if (SSL_get_verify_result(ssl) != X509_V_OK) in handle_io_failure()
165 X509_verify_cert_error_string(SSL_get_verify_result(ssl))); in handle_io_failure()
H A Dquic-client-non-block.c209 if (SSL_get_verify_result(ssl) != X509_V_OK) in handle_io_failure()
211 X509_verify_cert_error_string(SSL_get_verify_result(ssl))); in handle_io_failure()
H A Dquic-multi-stream.c260 if (SSL_get_verify_result(ssl) != X509_V_OK) in main()
262 X509_verify_cert_error_string(SSL_get_verify_result(ssl))); in main()
H A Dquic-hq-interop.c329 if (SSL_get_verify_result(ssl) != X509_V_OK) in handle_io_failure()
331 X509_verify_cert_error_string(SSL_get_verify_result(ssl))); in handle_io_failure()
/openssl/test/
H A Drpktest.c461 if (!TEST_long_eq(SSL_get_verify_result(clientssl), client_verify_result)) in test_rpk()
494 if (!TEST_long_eq(SSL_get_verify_result(serverssl), server_verify_result)) in test_rpk()
596 verify = SSL_get_verify_result(clientssl); in test_rpk()
H A Ddanetest.c348 err = SSL_get_verify_result(ssl); in test_tlsafile()
/openssl/doc/man7/
H A Dossl-guide-tls-client-non-block.pod195 * information about it from SSL_get_verify_result().
197 if (SSL_get_verify_result(ssl) != X509_V_OK)
199 X509_verify_cert_error_string(SSL_get_verify_result(ssl)));
H A Dossl-guide-tls-client-block.pod317 * information about it from SSL_get_verify_result().
319 if (SSL_get_verify_result(ssl) != X509_V_OK)
321 X509_verify_cert_error_string(SSL_get_verify_result(ssl)));
333 L<SSL_get_verify_result(3)> function to find out more information about the
H A Dossl-guide-quic-client-non-block.pod249 * information about it from SSL_get_verify_result().
251 if (SSL_get_verify_result(ssl) != X509_V_OK)
253 X509_verify_cert_error_string(SSL_get_verify_result(ssl)));
/openssl/util/
H A Dlibssl.num38 SSL_get_verify_result 39 3_0_0 EXIST::FUNCTION:
/openssl/apps/lib/
H A Ds_cb.c1253 long verify_err = SSL_get_verify_result(s); in print_verify_detail()

Completed in 29 milliseconds

12