Searched refs:preverify_ok (Results 1 – 7 of 7) sorted by relevance
| /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
| H A D | SSL_CTX_set_verify.pod | 18 typedef int (*SSL_verify_cb)(int preverify_ok, X509_STORE_CTX *x509_ctx); 157 receives two arguments: B<preverify_ok> indicates, whether the verification of 158 the certificate in question was passed (preverify_ok=1) or not 159 (preverify_ok=0). B<x509_ctx> is a pointer to the complete context used 166 and B<verify_callback> is called with B<preverify_ok>=0. By applying 169 found for a certificate, B<verify_callback> is called with B<preverify_ok>=1 185 Its return value is identical to B<preverify_ok>, so that any verification 244 static int verify_callback(int preverify_ok, X509_STORE_CTX *ctx) 275 preverify_ok = 0; 279 if (!preverify_ok) { [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | SSL_CTX_set_verify.pod | 18 typedef int (*SSL_verify_cb)(int preverify_ok, X509_STORE_CTX *x509_ctx); 175 receives two arguments: B<preverify_ok> indicates, whether the verification of 176 the certificate in question was passed (preverify_ok=1) or not 177 (preverify_ok=0). B<x509_ctx> is a pointer to the complete context used 184 and B<verify_callback> is called with B<preverify_ok>=0. By applying 187 found for a certificate, B<verify_callback> is called with B<preverify_ok>=1 203 Its return value is identical to B<preverify_ok>, so that any verification 262 static int verify_callback(int preverify_ok, X509_STORE_CTX *ctx) 293 preverify_ok = 0; 297 if (!preverify_ok) { [all …]
|
| /netbsd-src/usr.sbin/syslogd/ |
| H A D | tls.c | 675 check_peer_cert(int preverify_ok, X509_STORE_CTX *ctx) in check_peer_cert() argument 700 preverify_ok, cur_subjectline, cur_fingerprint, conn_info, in check_peer_cert() 703 if (Debug && !preverify_ok) { in check_peer_cert() 761 if (preverify_ok) in check_peer_cert() 786 if (!conn_info->incoming && preverify_ok) { in check_peer_cert() 795 } else if (!conn_info->incoming && !preverify_ok) { in check_peer_cert()
|
| /netbsd-src/external/bsd/nsd/dist/ |
| H A D | xfrd-tcp.c | 65 tls_verify_callback(int preverify_ok, X509_STORE_CTX *ctx) in tls_verify_callback() argument 72 if (!preverify_ok) in tls_verify_callback() 77 return preverify_ok; in tls_verify_callback()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
| H A D | ssl.h | 294 typedef int (*SSL_verify_cb)(int preverify_ok, X509_STORE_CTX *x509_ctx);
|
| /netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/ |
| H A D | ssl.h.in | 315 typedef int (*SSL_verify_cb)(int preverify_ok, X509_STORE_CTX *x509_ctx);
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/ |
| H A D | sslapitest.c | 4250 static int verify_cb(int preverify_ok, X509_STORE_CTX *x509_ctx) in verify_cb() argument
|