Home
last modified time | relevance | path

Searched refs:psa_wipe_key_slot (Results 1 – 5 of 5) sorted by relevance

/mbedtls-latest/library/
Dpsa_crypto_slot_management.c481 (void) psa_wipe_key_slot(slot); in psa_wipe_all_key_slots()
644 status = psa_wipe_key_slot(selected_slot); in psa_reserve_free_key_slot()
861 psa_wipe_key_slot(*p_slot); in psa_get_and_lock_key_slot()
905 return psa_wipe_key_slot(slot); in psa_unregister_read()
1044 status = psa_wipe_key_slot(slot); in psa_close_key()
1079 status = psa_wipe_key_slot(slot); in psa_purge_key()
Dpsa_crypto_core.h255 psa_status_t psa_wipe_key_slot(psa_key_slot_t *slot);
Dpsa_crypto.c1214 psa_status_t psa_wipe_key_slot(psa_key_slot_t *slot) in psa_wipe_key_slot() function
2052 psa_wipe_key_slot(slot);
/mbedtls-latest/docs/architecture/
Dpsa-keystore-design.md27 The following operations free a key slot by calling `psa_wipe_key_slot()` and, if applicable, `psa_…
110 With a static key store, `psa_wipe_key_slot()` destroys or purges a key by freeing any associated r…
149 … wiped. The implementation in Mbed TLS 3.6.1 requires this because `psa_wipe_key_slot()` wipes the…
175 When destroying a volatile key, `psa_wipe_key_slot()` calls `psa_free_key_slot()`. This function ad…
/mbedtls-latest/docs/architecture/psa-thread-safety/
Dpsa-thread-safety.md178 Changing a slot's state to `PSA_SLOT_EMPTY` is done via `psa_wipe_key_slot`, this function wipes th…
231 `psa_unregister_read` internally calls `psa_wipe_key_slot` if and only if the slot's state is `PSA_…
320 * At this point, the destroying thread directly calls `psa_wipe_key_slot`.