Home
last modified time | relevance | path

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

1234

/third_party/openssl/doc/man3/
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().
32 not indicate success. SSL_get_verify_result() is only useful in connection
DSSL_get_peer_certificate.pod31 verification state, use L<SSL_get_verify_result(3)>
62 L<ssl(7)>, L<SSL_get_verify_result(3)>,
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)>.
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)>,
DSSL_set_verify_result.pod34 L<ssl(7)>, L<SSL_get_verify_result(3)>,
DSSL_CTX_set_verify.pod94 using the L<SSL_get_verify_result(3)> function.
196 L<SSL_get_verify_result(3)> or by maintaining its
342 if (SSL_get_verify_result(ssl) == X509_V_OK) {
351 L<SSL_get_verify_result(3)>,
DSSL_get_peer_cert_chain.pod31 not successful (as indicated by SSL_get_verify_result() not returning
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) {
360 L<SSL_get_verify_result(3)>,
DSSL_CTX_set_cert_verify_callback.pod93 L<SSL_get_verify_result(3)>,
DX509_check_host.pod145 L<SSL_get_verify_result(3)>,
/third_party/curl/lib/
Dsetup-vms.h299 #define SSL_get_verify_result SSL_GET_VERIFY_RESULT macro
/third_party/openssl/test/
Ddanetest.c348 err = SSL_get_verify_result(ssl); in test_tlsafile()
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/
Dssl.h149 long SSL_get_verify_result(const SSL *ssl);
/third_party/libwebsockets/lib/tls/mbedtls/
Dmbedtls-client.c305 n = (int)SSL_get_verify_result(wsi->tls.ssl); in lws_tls_client_confirm_peer_cert()
Dmbedtls-x509.c303 buf->verified = SSL_get_verify_result(wsi->tls.ssl) == X509_V_OK; in lws_tls_peer_cert_info()
/third_party/libwebsockets/lib/tls/openssl/
Dopenssl-x509.c395 buf->verified = SSL_get_verify_result(wsi->tls.ssl) == in lws_tls_peer_cert_info()
Dopenssl-client.c614 n = SSL_get_verify_result(wsi->tls.ssl); in lws_tls_client_confirm_peer_cert()
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/library/
Dssl_lib.c1033 long SSL_get_verify_result(const SSL *ssl) in SSL_get_verify_result() function
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Dssl.rs776 pub fn SSL_get_verify_result(ssl: *const SSL) -> c_long; in SSL_get_verify_result() function
/third_party/node/deps/openssl/openssl/util/
Dlibssl.num38 SSL_get_verify_result 39 3_0_0 EXIST::FUNCTION:
/third_party/node/deps/openssl/openssl/apps/lib/
Ds_cb.c1169 long verify_err = SSL_get_verify_result(s); in print_verify_detail()
/third_party/openssl/util/
Dlibssl.num38 SSL_get_verify_result 39 3_0_0 EXIST::FUNCTION:
/third_party/openssl/apps/lib/
Ds_cb.c1169 long verify_err = SSL_get_verify_result(s); in print_verify_detail()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs2742 #[corresponds(SSL_get_verify_result)]
2744 unsafe { X509VerifyResult::from_raw(ffi::SSL_get_verify_result(self.as_ptr()) as c_int) } in verify_result()
/third_party/node/src/crypto/
Dcrypto_common.cc127 err = SSL_get_verify_result(ssl.get()); in VerifyPeerCertificate()

1234