Searched refs:hostflags (Results 1 – 10 of 10) sorted by relevance
/third_party/rust/crates/rust-openssl/openssl/src/x509/ |
D | verify.rs | 88 pub fn set_hostflags(&mut self, hostflags: X509CheckFlags) { in set_hostflags() 90 ffi::X509_VERIFY_PARAM_set_hostflags(self.as_ptr(), hostflags.bits); in set_hostflags()
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
D | x509_vpm.c | 195 x509_verify_param_copy(hostflags, 0); in X509_VERIFY_PARAM_inherit() 401 param->hostflags = flags; in X509_VERIFY_PARAM_set_hostflags() 406 return param->hostflags; in X509_VERIFY_PARAM_get_hostflags()
|
D | x509_local.h | 33 unsigned int hostflags; /* Flags to control matching features */ member
|
D | x509_vfy.c | 741 && (ctx->param->hostflags in check_name_constraints() 743 && ((ctx->param->hostflags in check_name_constraints() 782 if (X509_check_host(x, name, 0, vpm->hostflags, &vpm->peername) > 0) in check_hosts()
|
/third_party/openssl/crypto/x509/ |
D | x509_vpm.c | 195 x509_verify_param_copy(hostflags, 0); in X509_VERIFY_PARAM_inherit() 398 param->hostflags = flags; in X509_VERIFY_PARAM_set_hostflags() 403 return param->hostflags; in X509_VERIFY_PARAM_get_hostflags()
|
D | x509_local.h | 33 unsigned int hostflags; /* Flags to control matching features */ member
|
D | x509_vfy.c | 741 && (ctx->param->hostflags in check_name_constraints() 743 && ((ctx->param->hostflags in check_name_constraints() 782 if (X509_check_host(x, name, 0, vpm->hostflags, &vpm->peername) > 0) in check_hosts()
|
/third_party/python/Modules/ |
D | _ssl.c | 288 unsigned int hostflags; member 836 X509_VERIFY_PARAM_set_hostflags(ssl_params, sslctx->hostflags); in newPySSLSocket() 3062 self->hostflags = X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS; in _ssl__SSLContext_impl() 3162 X509_VERIFY_PARAM_set_hostflags(params, self->hostflags); in _ssl__SSLContext_impl() 3616 return PyLong_FromUnsignedLong(self->hostflags); in get_host_flags() 3629 self->hostflags = new_flags; in set_host_flags()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0b1.rst | 1082 OpenSSL does not copy hostflags from *struct SSL_CTX* to *struct SSL*.
|
/third_party/openssl/test/ |
D | sslapitest.c | 10165 int hostflags = X509_CHECK_FLAG_NEVER_CHECK_SUBJECT; in test_inherit_verify_param() local 10177 X509_VERIFY_PARAM_set_hostflags(cp, hostflags); in test_inherit_verify_param() 10186 if (!TEST_int_eq(X509_VERIFY_PARAM_get_hostflags(sp), hostflags)) in test_inherit_verify_param()
|