/openthread-latest/third_party/mbedtls/repo/programs/ssl/ |
D | ssl_client2.c | 465 struct options { struct 466 const char *server_name; /* hostname of the server (client only) */ 467 const char *server_addr; /* address of the server (client only) */ 468 const char *server_port; /* port on which the ssl service runs */ 469 int debug_level; /* level of debugging */ 470 int nbio; /* should I/O be blocking? */ 471 int event; /* loop or event-driven IO? level or edge triggered? */ 472 uint32_t read_timeout; /* timeout on mbedtls_ssl_read() in milliseconds */ 473 int max_resend; /* DTLS times to resend on read timeout */ 474 const char *request_page; /* page on server to request */ [all …]
|
D | ssl_server2.c | 606 struct options { struct 607 const char *server_addr; /* address on which the ssl service runs */ 608 const char *server_port; /* port on which the ssl service runs */ 609 int debug_level; /* level of debugging */ 610 int nbio; /* should I/O be blocking? */ 611 int event; /* loop or event-driven IO? level or edge triggered? */ 612 uint32_t read_timeout; /* timeout on mbedtls_ssl_read() in milliseconds */ 613 int response_size; /* pad response with header to requested size */ 614 uint16_t buffer_size; /* IO buffer size */ 615 const char *ca_file; /* the file with the CA certificate(s) */ [all …]
|
D | ssl_mail_client.c | 123 struct options { struct 124 const char *server_name; /* hostname of the server (client only) */ 125 const char *server_port; /* port on which the ssl service runs */ 126 int debug_level; /* level of debugging */ 127 int authentication; /* if authentication is required */ 128 int mode; /* SSL/TLS (0) or STARTTLS (1) */ 129 const char *user_name; /* username to use for authentication */ 130 const char *user_pwd; /* password to use for authentication */ 131 const char *mail_from; /* E-Mail address to use as sender */ 132 const char *mail_to; /* E-Mail address to use as recipient */ [all …]
|
/openthread-latest/third_party/mbedtls/repo/programs/x509/ |
D | cert_write.c | 178 struct options { struct 179 const char *issuer_crt; /* filename of the issuer certificate */ 180 const char *request_file; /* filename of the certificate request */ 181 const char *subject_key; /* filename of the subject key file */ 182 const char *issuer_key; /* filename of the issuer key file */ 183 const char *subject_pwd; /* password for the subject key file */ 184 const char *issuer_pwd; /* password for the issuer key file */ 185 const char *output_file; /* where to store the constructed CRT */ 186 const char *subject_name; /* subject name for certificate */ 187 mbedtls_x509_san_list *san_list; /* subjectAltName for certificate */ [all …]
|
D | cert_req.c | 96 struct options { struct 97 const char *filename; /* filename of the key file */ 98 const char *password; /* password for the key file */ 99 int debug_level; /* level of debugging */ 100 const char *output_file; /* where to store the constructed key file */ 101 const char *subject_name; /* subject name for certificate request */ 102 mbedtls_x509_san_list *san_list; /* subjectAltName for certificate request */ 103 unsigned char key_usage; /* key usage flags */ 104 int force_key_usage; /* Force adding the KeyUsage extension */ 105 unsigned char ns_cert_type; /* NS cert type */ [all …]
|
D | cert_app.c | 77 struct options { struct 78 int mode; /* the mode to run the application in */ 79 const char *filename; /* filename of the certificate file */ 80 const char *ca_file; /* the file with the CA certificate(s) */ 81 const char *crl_file; /* the file with the CRL to use */ 82 const char *ca_path; /* the path with the CA certificate(s) reside */ 83 const char *server_name; /* hostname of the server (client only) */ 84 const char *server_port; /* port on which the ssl service runs */ 85 int debug_level; /* level of debugging */ 86 int permissive; /* permissive parsing */
|
D | load_roots.c | 44 struct options { struct 45 const char **filenames; /* NULL-terminated list of file names */ 46 unsigned iterations; /* Number of iterations to time */ 47 int prime_cache; /* Prime the disk read cache? */
|
D | crl_app.c | 43 struct options { struct 44 const char *filename; /* filename of the certificate file */
|
D | req_app.c | 43 struct options { struct 44 const char *filename; /* filename of the certificate request */
|
/openthread-latest/third_party/mbedtls/repo/programs/test/ |
D | udp_proxy.c | 137 static struct options { struct 138 const char *server_addr; /* address to forward packets to */ 139 const char *server_port; /* port to forward packets to */ 140 const char *listen_addr; /* address for accepting client connections */ 141 const char *listen_port; /* port for accepting client connections */ 143 int duplicate; /* duplicate 1 in N packets (none if 0) */ 144 int delay; /* delay 1 packet in N (none if 0) */ 145 int delay_ccs; /* delay ChangeCipherSpec */ 146 char *delay_cli[MAX_DELAYED_HS]; /* handshake types of messages from 148 uint8_t delay_cli_cnt; /* Number of entries in delay_cli. */ [all …]
|
/openthread-latest/third_party/mbedtls/repo/tests/scripts/ |
D | depends.py | 71 def __init__(self, options=None): argument 102 def backup_config(options): argument 112 def restore_config(options): argument 142 def set_reference_config(conf, options, colors): argument 182 def configure(self, conf, options, colors): argument 191 def test(self, options): argument 385 def __init__(self, options, conf): argument 446 def run(options, job, conf, colors=NO_COLORS): argument 458 def run_tests(options, domain_data, conf): argument
|
D | test_config_script.py | 72 def list_presets(options): argument 87 def run_one(options, args, stem_prefix='', input_file=None): argument 139 def run_all(options): argument
|
D | psa_collect_statuses.py | 70 def collect_status_logs(options): argument
|
D | test_psa_constant_names.py | 107 def __init__(self, options) -> None: argument
|
/openthread-latest/third_party/mbedtls/repo/programs/pkey/ |
D | gen_key.c | 113 struct options { struct 114 int type; /* the type of key to generate */ 115 int rsa_keysize; /* length of key in bits */ 116 int ec_curve; /* curve identifier for EC keys */ 117 const char *filename; /* filename of the key file */ 118 int format; /* the output format to use */ 119 int use_dev_random; /* use /dev/random as entropy source */
|
D | key_app.c | 124 struct options { struct 125 int mode; /* the mode to run the application in */ 126 const char *filename; /* filename of the key file */ 127 const char *password; /* password for the private key */ 128 const char *password_file; /* password_file for the private key */
|
D | key_app_writer.c | 84 struct options { struct 85 int mode; /* the mode to run the application in */ 86 const char *filename; /* filename of the key file */ 87 int output_mode; /* the output mode to use */ 88 const char *output_file; /* where to store the constructed key file */ 89 int output_format; /* the output format to use */
|
/openthread-latest/third_party/mbedtls/repo/programs/util/ |
D | pem2der.c | 43 struct options { struct 44 const char *filename; /* filename of the input file */ 45 const char *output_file; /* where to store the output */
|
/openthread-latest/examples/platforms/simulation/ |
D | system.c | 124 static const char options[] = "Ehts:L:l:"; in otSysInit() local 126 static const char options[] = "Ehts:L:"; in otSysInit() local
|
/openthread-latest/third_party/mbedtls/repo/scripts/ |
D | assemble_changelog.py | 312 def list_merges(some_hash, target, *options): 438 def list_files_to_merge(options): argument 460 def merge_entries(options): argument 482 def show_file_timestamps(options): argument 492 def set_defaults(options): argument
|
/openthread-latest/third_party/mbedtls/repo/programs/fuzz/ |
D | fuzz_client.c | 46 uint16_t options; in LLVMFuzzerTestOneInput() local
|
D | fuzz_server.c | 49 uint8_t options; in LLVMFuzzerTestOneInput() local
|
/openthread-latest/tests/scripts/thread-cert/ |
D | coap.py | 207 options, argument 245 def options(self): member in CoapMessage 316 def options(self): member in CoapMessageProxy 380 def _uri_path_from(self, options): argument
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/testing/ |
D | invasive-testing.md | 63 #### Rules for function substitution 221 #### Guidelines for compile-time options
|
/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/ |
D | test_data_generation.py | 142 def __init__(self, options) -> None: argument
|