/openthread-3.5.0/third_party/mbedtls/repo/programs/ssl/ |
D | ssl_client2.c | 526 } opt; variable 546 if( opt.debug_level == 0 ) in my_verify() 573 if( opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM ) in report_cid_usage() 597 if( opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED ) in report_cid_usage() 801 opt.server_name = DFL_SERVER_NAME; in main() 802 opt.server_addr = DFL_SERVER_ADDR; in main() 803 opt.server_port = DFL_SERVER_PORT; in main() 804 opt.debug_level = DFL_DEBUG_LEVEL; in main() 805 opt.cid_enabled = DFL_CID_ENABLED; in main() 806 opt.cid_val = DFL_CID_VALUE; in main() [all …]
|
D | ssl_server2.c | 629 } opt; variable 1222 if( opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM ) in report_cid_usage() 1237 if( opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED ) in report_cid_usage() 1459 opt.buffer_size = DFL_IO_BUF_LEN; in main() 1460 opt.server_addr = DFL_SERVER_ADDR; in main() 1461 opt.server_port = DFL_SERVER_PORT; in main() 1462 opt.debug_level = DFL_DEBUG_LEVEL; in main() 1463 opt.event = DFL_EVENT; in main() 1464 opt.response_size = DFL_RESPONSE_SIZE; in main() 1465 opt.nbio = DFL_NBIO; in main() [all …]
|
D | ssl_mail_client.c | 163 } opt; variable 412 opt.server_name = DFL_SERVER_NAME; in main() 413 opt.server_port = DFL_SERVER_PORT; in main() 414 opt.debug_level = DFL_DEBUG_LEVEL; in main() 415 opt.authentication = DFL_AUTHENTICATION; in main() 416 opt.mode = DFL_MODE; in main() 417 opt.user_name = DFL_USER_NAME; in main() 418 opt.user_pwd = DFL_USER_PWD; in main() 419 opt.mail_from = DFL_MAIL_FROM; in main() 420 opt.mail_to = DFL_MAIL_TO; in main() [all …]
|
D | ssl_test_common_source.c | 46 if( opt.debug_level > 2 ) in eap_tls_key_derivation() 105 if( opt.nss_keylog_file != NULL ) in nss_keylog_export() 109 if( ( f = fopen( opt.nss_keylog_file, "a" ) ) == NULL ) in nss_keylog_export() 150 if( opt.debug_level > 2 ) in dtls_srtp_key_derivation() 196 if( opt.debug_level > 1 ) in ssl_check_record() 201 if( opt.debug_level > 1 ) in ssl_check_record() 206 if( opt.debug_level > 1 ) in ssl_check_record() 232 if( opt.nbio == 2 ) in recv_cb() 240 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM ) in recv_cb() 266 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM ) in recv_timeout_cb() [all …]
|
/openthread-3.5.0/third_party/mbedtls/repo/programs/x509/ |
D | cert_write.c | 184 } opt; variable 260 opt.issuer_crt = DFL_ISSUER_CRT; in main() 261 opt.request_file = DFL_REQUEST_FILE; in main() 262 opt.subject_key = DFL_SUBJECT_KEY; in main() 263 opt.issuer_key = DFL_ISSUER_KEY; in main() 264 opt.subject_pwd = DFL_SUBJECT_PWD; in main() 265 opt.issuer_pwd = DFL_ISSUER_PWD; in main() 266 opt.output_file = DFL_OUTPUT_FILENAME; in main() 267 opt.subject_name = DFL_SUBJECT_NAME; in main() 268 opt.issuer_name = DFL_ISSUER_NAME; in main() [all …]
|
D | cert_req.c | 123 } opt; variable 182 opt.filename = DFL_FILENAME; in main() 183 opt.password = DFL_PASSWORD; in main() 184 opt.debug_level = DFL_DEBUG_LEVEL; in main() 185 opt.output_file = DFL_OUTPUT_FILENAME; in main() 186 opt.subject_name = DFL_SUBJECT_NAME; in main() 187 opt.key_usage = DFL_KEY_USAGE; in main() 188 opt.force_key_usage = DFL_FORCE_KEY_USAGE; in main() 189 opt.ns_cert_type = DFL_NS_CERT_TYPE; in main() 190 opt.force_ns_cert_type = DFL_FORCE_NS_CERT_TYPE; in main() [all …]
|
D | cert_app.c | 116 } opt; variable 189 opt.mode = DFL_MODE; in main() 190 opt.filename = DFL_FILENAME; in main() 191 opt.ca_file = DFL_CA_FILE; in main() 192 opt.crl_file = DFL_CRL_FILE; in main() 193 opt.ca_path = DFL_CA_PATH; in main() 194 opt.server_name = DFL_SERVER_NAME; in main() 195 opt.server_port = DFL_SERVER_PORT; in main() 196 opt.debug_level = DFL_DEBUG_LEVEL; in main() 197 opt.permissive = DFL_PERMISSIVE; in main() [all …]
|
D | load_roots.c | 104 } opt; variable 151 opt.filenames = NULL; in main() 152 opt.iterations = DFL_ITERATIONS; in main() 153 opt.prime_cache = DFL_PRIME_CACHE; in main() 174 opt.iterations = atoi( q ); in main() 178 opt.iterations = atoi( q ) != 0; in main() 188 opt.filenames = (const char**) argv + i; in main() 189 if( *opt.filenames == 0 ) in main() 196 if( opt.prime_cache ) in main() 198 if( ! read_certificates( opt.filenames ) ) in main() [all …]
|
D | crl_app.c | 69 } opt; variable 92 opt.filename = DFL_FILENAME; in main() 102 opt.filename = q; in main() 113 ret = mbedtls_x509_crl_parse_file( &crl, opt.filename ); in main()
|
D | req_app.c | 69 } opt; variable 92 opt.filename = DFL_FILENAME; in main() 102 opt.filename = q; in main() 113 ret = mbedtls_x509_csr_parse_file( &csr, opt.filename ); in main()
|
/openthread-3.5.0/third_party/mbedtls/repo/programs/test/ |
D | udp_proxy.c | 173 } opt; variable 191 opt.server_addr = DFL_SERVER_ADDR; in get_options() 192 opt.server_port = DFL_SERVER_PORT; in get_options() 193 opt.listen_addr = DFL_LISTEN_ADDR; in get_options() 194 opt.listen_port = DFL_LISTEN_PORT; in get_options() 195 opt.pack = DFL_PACK; in get_options() 198 opt.delay_cli_cnt = 0; in get_options() 199 opt.delay_srv_cnt = 0; in get_options() 200 memset( opt.delay_cli, 0, sizeof( opt.delay_cli ) ); in get_options() 201 memset( opt.delay_srv, 0, sizeof( opt.delay_srv ) ); in get_options() [all …]
|
/openthread-3.5.0/third_party/mbedtls/repo/programs/pkey/ |
D | key_app_writer.c | 110 } opt; variable 123 if( opt.output_format == OUTPUT_FORMAT_PEM ) in write_public_key() 165 if( opt.output_format == OUTPUT_FORMAT_PEM ) in write_private_key() 228 opt.mode = DFL_MODE; in main() 229 opt.filename = DFL_FILENAME; in main() 230 opt.output_mode = DFL_OUTPUT_MODE; in main() 231 opt.output_file = DFL_OUTPUT_FILENAME; in main() 232 opt.output_format = DFL_OUTPUT_FORMAT; in main() 244 opt.mode = MODE_PRIVATE; in main() 246 opt.mode = MODE_PUBLIC; in main() [all …]
|
D | gen_key.c | 150 } opt; variable 161 if( opt.format == FORMAT_PEM ) in write_private_key() 233 opt.type = DFL_TYPE; in main() 234 opt.rsa_keysize = DFL_RSA_KEYSIZE; in main() 235 opt.ec_curve = DFL_EC_CURVE; in main() 236 opt.filename = DFL_FILENAME; in main() 237 opt.format = DFL_FORMAT; in main() 238 opt.use_dev_random = DFL_USE_DEV_RANDOM; in main() 250 opt.type = MBEDTLS_PK_RSA; in main() 252 opt.type = MBEDTLS_PK_ECKEY; in main() [all …]
|
D | key_app.c | 85 } opt; variable 115 opt.mode = DFL_MODE; in main() 116 opt.filename = DFL_FILENAME; in main() 117 opt.password = DFL_PASSWORD; in main() 118 opt.password_file = DFL_PASSWORD_FILE; in main() 130 opt.mode = MODE_PRIVATE; in main() 132 opt.mode = MODE_PUBLIC; in main() 137 opt.filename = q; in main() 139 opt.password = q; in main() 141 opt.password_file = q; in main() [all …]
|
/openthread-3.5.0/third_party/mbedtls/repo/tests/scripts/ |
D | test-ref-configs.pl | 112 my $opt = $data->{'opt'}; 113 if( $opt ) 115 print "\nrunning ssl-opt.sh $opt\n"; 116 system( "tests/ssl-opt.sh $opt" )
|
D | depends-pkalgs.pl | 94 for my $opt (@$extras) { 95 system( "scripts/config.py unset $opt" ) 96 and abort "Failed to disable $opt\n";
|
D | depends-hashes.pl | 88 for my $opt (@ssl) { 89 system( "scripts/config.py unset $opt" ) 90 and abort "Failed to disable $opt\n";
|
D | all.sh | 826 opt='--quiet' 828 opt='' 830 tests/scripts/check_test_cases.py $opt 831 unset opt 874 tests/ssl-opt.sh 896 tests/ssl-opt.sh 963 tests/ssl-opt.sh 987 tests/ssl-opt.sh 1022 tests/ssl-opt.sh 1038 tests/ssl-opt.sh [all …]
|
/openthread-3.5.0/third_party/mbedtls/repo/programs/util/ |
D | pem2der.c | 74 } opt; variable 207 opt.filename = DFL_FILENAME; in main() 208 opt.output_file = DFL_OUTPUT_FILENAME; in main() 219 opt.filename = q; in main() 221 opt.output_file = q; in main() 232 ret = load_file( opt.filename, &pem_buffer, &pem_size ); in main() 268 ret = write_file( opt.output_file, der_buffer, der_size ); in main()
|
/openthread-3.5.0/third_party/mbedtls/repo/scripts/ |
D | rename.pl | 42 my $opt = shift; 43 if( $opt eq '--' ) { 45 } elsif( $opt eq '-f' ) { 47 } elsif( $opt eq '-s' ) {
|
/openthread-3.5.0/tests/scripts/thread-cert/border_router/ |
D | test_manual_omr_prefix.py | 114 …_pkts.filter(lambda p: ICMPV6_RA_OPT_TYPE_RIO in p.icmpv6.opt.type and '2004::' in p.icmpv6.opt.pr… 115 BR_1_OMR_PREFIX in p.icmpv6.opt.prefix).must_next()
|
D | test_radvd_coexist.py | 155 .filter(lambda p: RA_OPT_TYPE_PIO in p.icmpv6.opt.type) \ 161 .filter(lambda p: RA_OPT_TYPE_RIO in p.icmpv6.opt.type) \ 171 .filter(lambda p: RA_OPT_TYPE_PIO in p.icmpv6.opt.type) \ 178 .filter(lambda p: RA_OPT_TYPE_RIO in p.icmpv6.opt.type) \
|
/openthread-3.5.0/third_party/tcplp/bsdtcp/ |
D | tcp_timewait.c | 126 uint8_t opt[TCP_MAXOLEN]; in tcp_twrespond() local 139 optlen = tcp_addoptions(&to, opt); in tcp_twrespond() 167 memcpy(nth + 1, opt, optlen); in tcp_twrespond()
|
/openthread-3.5.0/tests/scripts/thread-cert/ |
D | network_layer.py | 257 return "NdOption(options=[{}])".format(", ".join([str(opt) for opt in self.options])) 263 options = [opt for opt in bytearray(data.read())]
|
/openthread-3.5.0/third_party/mbedtls/repo/tests/ |
D | ssl-opt-in-docker.sh | 62 tests/ssl-opt.sh \
|