Searched refs:crt_file (Results 1 – 3 of 3) sorted by relevance
/AliOS-Things-master/components/mbedtls/programs/ssl/ |
A D | ssl_mail_client.c | 172 const char *crt_file; /* the file with the client certificate */ member 434 opt.crt_file = DFL_CRT_FILE; in main() 478 opt.crt_file = q; in main() 550 if( strlen( opt.crt_file ) ) in main() 551 ret = mbedtls_x509_crt_parse_file( &clicert, opt.crt_file ); in main()
|
A D | ssl_client2.c | 349 const char *crt_file; /* the file with the client certificate */ member 625 opt.crt_file = DFL_CRT_FILE; in main() 723 opt.crt_file = q; in main() 1260 if( strlen( opt.crt_file ) ) in main() 1261 if( strcmp( opt.crt_file, "none" ) == 0 ) in main() 1264 ret = mbedtls_x509_crt_parse_file( &clicert, opt.crt_file ); in main() 1463 if( strcmp( opt.crt_file, "none" ) != 0 && in main()
|
A D | ssl_server2.c | 459 const char *crt_file; /* the file with the server certificate */ member 634 char *crt_file, *key_file, *ca_file, *crl_file, *auth_str; in sni_parse() local 649 GET_ITEM( crt_file ); in sni_parse() 662 if( mbedtls_x509_crt_parse_file( new->cert, crt_file ) != 0 || in sni_parse() 1333 opt.crt_file = DFL_CRT_FILE; in main() 1440 opt.crt_file = q; in main() 2035 if( strlen( opt.crt_file ) && strcmp( opt.crt_file, "none" ) != 0 ) in main() 2038 if( ( ret = mbedtls_x509_crt_parse_file( &srvcert, opt.crt_file ) ) != 0 ) in main() 2087 strcmp( opt.crt_file, "none" ) != 0 && in main()
|
Completed in 12 milliseconds