/mbedtls-development/programs/hash/ |
A D | generic_sum.c | 181 const int *list; in main() local 187 list = mbedtls_md_list(); in main() 188 while( *list ) in main() 190 md_info = mbedtls_md_info_from_type( *list ); in main() 192 list++; in main()
|
/mbedtls-development/programs/aes/ |
A D | crypt_and_hash.c | 118 const int *list; in main() local 123 list = mbedtls_cipher_list(); in main() 124 while( *list ) in main() 126 cipher_info = mbedtls_cipher_info_from_type( *list ); in main() 128 list++; in main() 132 list = mbedtls_md_list(); in main() 133 while( *list ) in main() 135 md_info = mbedtls_md_info_from_type( *list ); in main() 137 list++; in main()
|
/mbedtls-development/programs/fuzz/ |
A D | CMakeLists.txt | 29 list(APPEND exe_sources onefile.c) 33 list(FIND executables_with_common_c ${exe} exe_index) 35 list(APPEND exe_sources common.c)
|
/mbedtls-development/library/ |
A D | asn1parse.c | 464 const mbedtls_asn1_named_data *mbedtls_asn1_find_named_data( const mbedtls_asn1_named_data *list, in mbedtls_asn1_find_named_data() argument 467 while( list != NULL ) in mbedtls_asn1_find_named_data() 469 if( list->oid.len == len && in mbedtls_asn1_find_named_data() 470 memcmp( list->oid.p, oid, len ) == 0 ) in mbedtls_asn1_find_named_data() 475 list = list->next; in mbedtls_asn1_find_named_data() 478 return( list ); in mbedtls_asn1_find_named_data()
|
A D | asn1write.c | 395 mbedtls_asn1_named_data *list, in asn1_find_named_data() argument 398 while( list != NULL ) in asn1_find_named_data() 400 if( list->oid.len == len && in asn1_find_named_data() 401 memcmp( list->oid.p, oid, len ) == 0 ) in asn1_find_named_data() 406 list = list->next; in asn1_find_named_data() 409 return( list ); in asn1_find_named_data()
|
/mbedtls-development/ |
A D | SUPPORT.md | 9 - the [Mbed TLS mailing-list 15 mailing list](https://lists.trustedfirmware.org/mailman/listinfo/mbed-tls).
|
A D | CMakeLists.txt | 8 # that targets are built using the proper list of include directories. 67 # Warning string - created as a list for compatibility with CMake 2.8 102 # If this is the root project add longer list of available CMAKE_BUILD_TYPE values 145 # Split into a list on '.' (but a cmake list is just a ';'-separated string) 148 list(LENGTH ext_parts ext_parts_len) 151 list(REMOVE_AT ext_parts ${ext_parts_last_item})
|
/mbedtls-development/programs/ssl/ |
A D | CMakeLists.txt | 35 list(APPEND extra_sources 57 list(APPEND executables ssl_pthread_server)
|
A D | ssl_mail_client.c | 386 const int *list; in main() local 405 list = mbedtls_ssl_list_ciphersuites(); in main() 406 while( *list ) in main() 408 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name( *list ) ); in main() 409 list++; in main()
|
A D | ssl_client2.c | 720 const int *list; in main() local 793 list = mbedtls_ssl_list_ciphersuites(); in main() 794 while( *list ) in main() 796 mbedtls_printf(" %-42s", mbedtls_ssl_get_ciphersuite_name( *list ) ); in main() 797 list++; in main() 798 if( !*list ) in main() 800 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name( *list ) ); in main() 801 list++; in main()
|
A D | ssl_server2.c | 1371 const int *list; in main() local 1469 list = mbedtls_ssl_list_ciphersuites(); in main() 1470 while( *list ) in main() 1472 mbedtls_printf(" %-42s", mbedtls_ssl_get_ciphersuite_name( *list ) ); in main() 1473 list++; in main() 1474 if( !*list ) in main() 1476 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name( *list ) ); in main() 1477 list++; in main()
|
/mbedtls-development/programs/test/ |
A D | CMakeLists.txt | 58 list(APPEND extra_sources 70 list(FIND executables_libs ${exe} exe_index)
|
/mbedtls-development/ChangeLog.d/ |
A D | fix-needed-shared-libraries-linux.txt | 3 not to list other shared libraries they need.
|
/mbedtls-development/.github/ISSUE_TEMPLATE/ |
A D | config.yml | 6 - name: Mbed TLS mailing list
|
/mbedtls-development/tests/scripts/ |
A D | check-generated-files.sh | 126 check tests/scripts/generate_psa_tests.py $(tests/scripts/generate_psa_tests.py --list)
|
A D | list-identifiers.sh | 60 iteration of list-identifiers.sh, of which only the --internal option remains in
|
A D | generate_psa_tests.py | 155 tc.set_arguments([key_type] + list(args)) 250 tc.set_arguments([key_type] + list(args) + [result]) 573 all_keys = list(self.generate_all_keys()) 757 if options.list:
|
A D | set_psa_test_dependencies.py | 211 content_matches = list(re.finditer(r'^[\t ]*([^\t #].*)$', stanza, re.M))
|
/mbedtls-development/tests/ |
A D | CMakeLists.txt | 24 --list-for-cmake 34 list(APPEND generated_data_files ${CMAKE_CURRENT_BINARY_DIR}/${file}) 74 # from the generated_data_files list in parent scope. 83 list(APPEND generated_data_names ${generated_data_name})
|
A D | Makefile | 70 $(PYTHON) scripts/generate_psa_tests.py --list || \
|
/mbedtls-development/include/mbedtls/ |
A D | asn1write.h | 357 mbedtls_asn1_named_data *mbedtls_asn1_store_named_data( mbedtls_asn1_named_data **list,
|
A D | asn1.h | 607 const mbedtls_asn1_named_data *mbedtls_asn1_find_named_data( const mbedtls_asn1_named_data *list,
|
/mbedtls-development/doxygen/ |
A D | mbedtls.doxyfile | 23 # http://www.gnu.org/software/libiconv for the list of possible encodings. 459 # will list include files with double quotes in the documentation 499 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 504 # Note: This option applies only to the class list, not to the 505 # alphabetical list. 519 # disable (NO) the todo list. This list is created by putting \todo 525 # disable (NO) the test list. This list is created by putting \test 531 # disable (NO) the bug list. This list is created by putting \bug 537 # disable (NO) the deprecated list. This list is created by putting 673 # the list of possible encodings. [all …]
|
/mbedtls-development/tests/suites/ |
A D | test_suite_asn1parse.data | 625 Free named data list (empty) 628 Free named data list (1) 631 Free named data list (2)
|
/mbedtls-development/docs/architecture/ |
A D | tls13-experimental.md | 137 group. The preferred group is the group of the first curve in the list of 141 list of mandatory-to-implement groups (in absence of an application 143 specification. The list of allowed curves can be changed through the 166 the three first ones in the list above are mandatory (see section 9.1 of the
|