Searched refs:ext_types (Results 1 – 12 of 12) sorted by relevance
/third_party/node/deps/nghttp2/lib/ |
D | nghttp2_option.c | 68 static void set_ext_type(uint8_t *ext_types, uint8_t type) { in set_ext_type() argument 69 ext_types[type / 8] = (uint8_t)(ext_types[type / 8] | (1 << (type & 0x7))); in set_ext_type()
|
D | nghttp2_session.c | 146 static int check_ext_type_set(const uint8_t *ext_types, uint8_t type) { in check_ext_type_set() argument 147 return (ext_types[type / 8] & (1 << (type & 0x7))) > 0; in check_ext_type_set()
|
/third_party/nghttp2/lib/ |
D | nghttp2_option.c | 68 static void set_ext_type(uint8_t *ext_types, uint8_t type) { in set_ext_type() argument 69 ext_types[type / 8] = (uint8_t)(ext_types[type / 8] | (1 << (type & 0x7))); in set_ext_type()
|
D | nghttp2_session.c | 146 static int check_ext_type_set(const uint8_t *ext_types, uint8_t type) { in check_ext_type_set() argument 147 return (ext_types[type / 8] & (1 << (type & 0x7))) > 0; in check_ext_type_set()
|
/third_party/boringssl/src/ssl/ |
D | tls13_client.cc | 118 SSL_EXTENSION_TYPE ext_types[] = { in do_read_hello_retry_request() local 126 if (!ssl_parse_extensions(&extensions, &alert, ext_types, in do_read_hello_retry_request() 127 OPENSSL_ARRAY_SIZE(ext_types), in do_read_hello_retry_request() 283 SSL_EXTENSION_TYPE ext_types[] = { in do_read_server_hello() local 291 if (!ssl_parse_extensions(&extensions, &alert, ext_types, in do_read_server_hello() 292 OPENSSL_ARRAY_SIZE(ext_types), in do_read_server_hello() 493 const SSL_EXTENSION_TYPE ext_types[] = { in do_read_certificate_request() local 505 !ssl_parse_extensions(&extensions, &alert, ext_types, in do_read_certificate_request() 506 OPENSSL_ARRAY_SIZE(ext_types), in do_read_certificate_request() 899 const SSL_EXTENSION_TYPE ext_types[] = { in tls13_process_new_session_ticket() local [all …]
|
D | handshake.cc | 241 const SSL_EXTENSION_TYPE *ext_types, in ssl_parse_extensions() argument 245 *ext_types[i].out_present = 0; in ssl_parse_extensions() 246 CBS_init(ext_types[i].out_data, NULL, 0); in ssl_parse_extensions() 262 if (type == ext_types[i].type) { in ssl_parse_extensions() 263 ext_type = &ext_types[i]; in ssl_parse_extensions()
|
D | tls13_both.cc | 240 const SSL_EXTENSION_TYPE ext_types[] = { in tls13_process_certificate() local 246 if (!ssl_parse_extensions(&extensions, &alert, ext_types, in tls13_process_certificate() 247 OPENSSL_ARRAY_SIZE(ext_types), in tls13_process_certificate()
|
D | handshake_client.cc | 355 const SSL_EXTENSION_TYPE ext_types[] = { in parse_supported_versions() local 361 if (!ssl_parse_extensions(&extensions, &alert, ext_types, in parse_supported_versions() 362 OPENSSL_ARRAY_SIZE(ext_types), in parse_supported_versions()
|
D | internal.h | 1910 const SSL_EXTENSION_TYPE *ext_types,
|
/third_party/mbedtls/library/ |
D | x509_crt.c | 804 if( ( crt->ext_types & ext_type ) != 0 ) in x509_get_crt_ext() 807 crt->ext_types |= ext_type; in x509_get_crt_ext() 1635 if( crt->ext_types & MBEDTLS_X509_EXT_BASIC_CONSTRAINTS ) in mbedtls_x509_crt_info() 1648 if( crt->ext_types & MBEDTLS_X509_EXT_SUBJECT_ALT_NAME ) in mbedtls_x509_crt_info() 1658 if( crt->ext_types & MBEDTLS_X509_EXT_NS_CERT_TYPE ) in mbedtls_x509_crt_info() 1667 if( crt->ext_types & MBEDTLS_X509_EXT_KEY_USAGE ) in mbedtls_x509_crt_info() 1676 if( crt->ext_types & MBEDTLS_X509_EXT_EXTENDED_KEY_USAGE ) in mbedtls_x509_crt_info() 1757 if( ( crt->ext_types & MBEDTLS_X509_EXT_KEY_USAGE ) == 0 ) in mbedtls_x509_crt_check_key_usage() 1782 if( ( crt->ext_types & MBEDTLS_X509_EXT_EXTENDED_KEY_USAGE ) == 0 ) in mbedtls_x509_crt_check_extended_key_usage() 2466 if( crt->ext_types & MBEDTLS_X509_EXT_SUBJECT_ALT_NAME ) in x509_crt_verify_name()
|
/third_party/mbedtls/include/mbedtls/ |
D | x509_crt.h | 103 int ext_types; /**< Bit string containing detected and parsed extensions */ member
|
/third_party/libcoap/src/ |
D | coap_mbedtls.c | 264 if (crt->ext_types & MBEDTLS_X509_EXT_SUBJECT_ALT_NAME) { in get_san_or_cn_from_cert()
|