Searched refs:SSL_get_verify_result (Results 1 – 25 of 32) sorted by relevance
12
/openssl/doc/man3/ |
H A D | SSL_get_verify_result.pod | 5 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 D | SSL_get_peer_certificate.pod | 36 verification state, use L<SSL_get_verify_result(3)> 67 L<ssl(7)>, L<SSL_get_verify_result(3)>,
|
H A D | SSL_set1_host.pod | 72 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 D | SSL_CTX_set_ct_validation_callback.pod | 48 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 D | SSL_set_verify_result.pod | 34 L<ssl(7)>, L<SSL_get_verify_result(3)>,
|
H A D | SSL_CTX_set_verify.pod | 94 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 D | SSL_get_peer_cert_chain.pod | 31 not successful (as indicated by SSL_get_verify_result() not returning
|
H A D | SSL_get0_peer_rpk.pod | 86 L<SSL_get_verify_result(3)>,
|
H A D | SSL_CTX_set_cert_verify_callback.pod | 93 L<SSL_get_verify_result(3)>,
|
H A D | SSL_CTX_dane_enable.pod | 291 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 D | SSL_set1_server_cert_type.pod | 160 verify_result = SSL_get_verify_result(ssl);
|
H A D | X509_check_host.pod | 145 L<SSL_get_verify_result(3)>,
|
/openssl/demos/guide/ |
H A D | tls-client-block.c | 209 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 D | quic-client-block.c | 231 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 D | tls-client-non-block.c | 163 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 D | quic-client-non-block.c | 209 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 D | quic-multi-stream.c | 260 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 D | quic-hq-interop.c | 329 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 D | rpktest.c | 461 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 D | danetest.c | 348 err = SSL_get_verify_result(ssl); in test_tlsafile()
|
/openssl/doc/man7/ |
H A D | ossl-guide-tls-client-non-block.pod | 195 * 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 D | ossl-guide-tls-client-block.pod | 317 * 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 D | ossl-guide-quic-client-non-block.pod | 249 * 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 D | libssl.num | 38 SSL_get_verify_result 39 3_0_0 EXIST::FUNCTION:
|
/openssl/apps/lib/ |
H A D | s_cb.c | 1253 long verify_err = SSL_get_verify_result(s); in print_verify_detail()
|
Completed in 29 milliseconds
12