Home
last modified time | relevance | path

Searched refs:list (Results 1 – 25 of 67) sorted by relevance

123

/mbedtls-latest/docs/architecture/
Dpsa-storage-resilience.md127 …) follow this pattern, with `t` being the file containing the transaction list that the recovery c…
133list”, with one entry per key. In this section, we explore recovery strategies, and we determine w…
165 Each entry in the transaction list contains the API key identifier, the key lifetime (or at least t…
170 2. Add the key to the transaction list, indicating that it is being created.
173 5. Remove the key from the transaction list.
175 During recovery, for each key in the transaction list that was being created:
177 * If the key exists in the secure element, just remove it from the transaction list.
178 …element, first remove the key file if it is present, then remove the key from the transaction list.
182 1. Add the key to the transaction list, indicating that it is being destroyed.
185 4. Remove the key from the transaction list.
[all …]
Dpsa-keystore-design.md159 #### Free list
161list**. This is a linked list of all the slots in the slice that are free. The global data contain…
163list _relative to the next slot in the array_. For example, 0 indicates that the next free slot is…
169 The newly allocated slot is removed from the slice's free list.
175 … calls `psa_free_key_slot()`. This function adds the newly freed slot to the head of the free list.
/mbedtls-latest/tests/
DCMakeLists.txt25 --list-for-cmake
37 --list-for-cmake
49 --list-for-cmake
61 --list-for-cmake
81 list(APPEND bignum_generated_data_files ${CMAKE_CURRENT_BINARY_DIR}/suites/${file})
84 list(APPEND config_generated_data_files ${CMAKE_CURRENT_BINARY_DIR}/suites/${file})
87 list(APPEND ecp_generated_data_files ${CMAKE_CURRENT_BINARY_DIR}/suites/${file})
90 list(APPEND psa_generated_data_files ${CMAKE_CURRENT_BINARY_DIR}/suites/${file})
199 # from the generated_data_files list in parent scope.
211 list(APPEND bignum_generated_data_names ${generated_data_name})
[all …]
DMakefile20 $(PYTHON) ../framework/scripts/generate_bignum_tests.py --list || \
29 $(PYTHON) ../framework/scripts/generate_config_tests.py --list || \
38 $(PYTHON) ../framework/scripts/generate_ecp_tests.py --list || \
47 $(PYTHON) ../framework/scripts/generate_psa_tests.py --list || \
151 $($(PYTHON) ../framework/scripts/generate_test_cert_macros.py --list-dependencies)
/mbedtls-latest/library/
Dasn1write.c355 mbedtls_asn1_named_data *list, in asn1_find_named_data() argument
358 while (list != NULL) { in asn1_find_named_data()
359 if (list->oid.len == len && in asn1_find_named_data()
360 memcmp(list->oid.p, oid, len) == 0) { in asn1_find_named_data()
364 list = list->next; in asn1_find_named_data()
367 return list; in asn1_find_named_data()
370 #define asn1_find_named_data(list, oid, len) \ argument
371 ((mbedtls_asn1_named_data *) mbedtls_asn1_find_named_data(list, oid, len))
Dasn1parse.c453 const mbedtls_asn1_named_data *mbedtls_asn1_find_named_data(const mbedtls_asn1_named_data *list, in mbedtls_asn1_find_named_data() argument
456 while (list != NULL) { in mbedtls_asn1_find_named_data()
457 if (list->oid.len == len && in mbedtls_asn1_find_named_data()
458 memcmp(list->oid.p, oid, len) == 0) { in mbedtls_asn1_find_named_data()
462 list = list->next; in mbedtls_asn1_find_named_data()
465 return list; in mbedtls_asn1_find_named_data()
/mbedtls-latest/programs/aes/
Dcrypt_and_hash.c98 const int *list; in main() local
103 list = mbedtls_cipher_list(); in main()
104 while (*list) { in main()
105 cipher_info = mbedtls_cipher_info_from_type(*list); in main()
111 list++; in main()
115 list = mbedtls_md_list(); in main()
116 while (*list) { in main()
117 md_info = mbedtls_md_info_from_type(*list); in main()
119 list++; in main()
/mbedtls-latest/programs/hash/
Dgeneric_sum.c161 const int *list; in main() local
167 list = mbedtls_md_list(); in main()
168 while (*list) { in main()
169 md_info = mbedtls_md_info_from_type(*list); in main()
171 list++; in main()
/mbedtls-latest/
DSUPPORT.md10 - the [Mbed TLS mailing-list
11 archives](https://lists.trustedfirmware.org/archives/list/mbed-tls@lists.trustedfirmware.org/).
16 mailing list](https://lists.trustedfirmware.org/mailman3/lists/mbed-tls.lists.trustedfirmware.org).
DCMakeLists.txt8 # that targets are built using the proper list of include directories.
98 # Warning string - created as a list for compatibility with CMake 2.8
138 # If this is the root project add longer list of available CMAKE_BUILD_TYPE values
183 # Split into a list on '.' (but a cmake list is just a ';'-separated string)
186 list(LENGTH ext_parts ext_parts_len)
189 list(REMOVE_AT ext_parts ${ext_parts_last_item})
/mbedtls-latest/programs/fuzz/
DCMakeLists.txt31 list(APPEND exe_sources onefile.c)
35 list(FIND executables_with_common_c ${exe} exe_index)
37 list(APPEND exe_sources common.c)
/mbedtls-latest/tests/scripts/
Dgenerate_tls13_compat_tests.py111 self._cert_sig_algs = list(CERTIFICATES.keys())
584 default=list(SERVER_CLASSES.keys())[0],
587 default=list(CLIENT_CLASSES.keys())[0],
590 default=list(CIPHER_SUITE_IANA_VALUE.keys())[0],
593 default=list(SIG_ALG_IANA_VALUE.keys())[0],
596 default=list(NAMED_GROUP_IANA_VALUE.keys())[0],
Dall.sh272 --list-all-components List all available test components and exit.
273 --list-components List components supported on this platform and exit.
482 --list-all-components) printf '%s\n' $ALL_COMPONENTS; exit;;
483 --list-components) list_components=1;;
Dlist-identifiers.sh48 iteration of list-identifiers.sh, of which only the --internal option remains in
Drun-metatests.sh71 full_list=$("$METATEST_PROGRAM" list)
/mbedtls-latest/scripts/
Dgenerate_ssl_debug_helpers.py239 matches = list(sig_alg_pattern.finditer(source_code, start, end))
246 assert isinstance(definitions, list) and definitions
298 matches = list(named_group_pattern.finditer(source_code, start, end))
305 assert isinstance(definitions, list) and definitions
Dgenerate_driver_wrappers.py42 def render(template_path: str, driver_jsoncontext: list) -> str: argument
56 driver_jsoncontext: list) -> None: argument
138 jsondriver_list: str) -> list:
/mbedtls-latest/docs/architecture/psa-migration/
Dsyms.sh45 list() { function
72 list $ITEM
/mbedtls-latest/programs/ssl/
Dssl_mail_client.c347 const int *list; in main() local
375 list = mbedtls_ssl_list_ciphersuites(); in main()
376 while (*list) { in main()
377 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name(*list)); in main()
378 list++; in main()
DCMakeLists.txt34 list(APPEND extra_sources
56 list(APPEND executables ssl_pthread_server)
/mbedtls-latest/programs/test/
DCMakeLists.txt69 list(APPEND extra_sources
85 list(FIND executables_libs ${exe} exe_index)
/mbedtls-latest/scripts/data_files/driver_templates/
DOS-template-opaque.jinja3 * drivers: the list of driver descriptions.
DOS-template-transparent.jinja3 * drivers: the list of driver descriptions.
/mbedtls-latest/tests/suites/
Dtest_suite_asn1parse.data630 Free named data list (empty)
633 Free named data list (1)
636 Free named data list (2)
/mbedtls-latest/programs/test/cmake_package_install/
DCMakeLists.txt31 list(INSERT CMAKE_PREFIX_PATH 0 "${MbedTLS_INSTALL_DIR}")

123