A struct containing all of the function pointers needed to for secure element key management. More...
A struct containing all of the function pointers needed to for secure element key management.
PSA Crypto API implementations should populate instances of the table as appropriate upon startup or at build time.
If one of the functions is not implemented, it should be set to NULL
.
Definition at line 1085 of file psa_crypto_se_driver.h.
#include <psa_crypto_se_driver.h>
Data Fields | |
psa_drv_se_allocate_key_t | p_allocate |
Function that allocates a slot for a key. | |
psa_drv_se_validate_slot_number_t | p_validate_slot_number |
Function that checks the validity of a slot for a key. | |
psa_drv_se_import_key_t | p_import |
Function that performs a key import operation. | |
psa_drv_se_generate_key_t | p_generate |
Function that performs a generation. | |
psa_drv_se_destroy_key_t | p_destroy |
Function that performs a key destroy operation. | |
psa_drv_se_export_key_t | p_export |
Function that performs a key export operation. | |
psa_drv_se_export_key_t | p_export_public |
Function that performs a public key export operation. | |
psa_drv_se_allocate_key_t psa_drv_se_key_management_t::p_allocate |
Function that allocates a slot for a key.
Definition at line 1087 of file psa_crypto_se_driver.h.
psa_drv_se_destroy_key_t psa_drv_se_key_management_t::p_destroy |
Function that performs a key destroy operation.
Definition at line 1095 of file psa_crypto_se_driver.h.
psa_drv_se_export_key_t psa_drv_se_key_management_t::p_export |
Function that performs a key export operation.
Definition at line 1097 of file psa_crypto_se_driver.h.
psa_drv_se_export_key_t psa_drv_se_key_management_t::p_export_public |
Function that performs a public key export operation.
Definition at line 1099 of file psa_crypto_se_driver.h.
psa_drv_se_generate_key_t psa_drv_se_key_management_t::p_generate |
Function that performs a generation.
Definition at line 1093 of file psa_crypto_se_driver.h.
psa_drv_se_import_key_t psa_drv_se_key_management_t::p_import |
Function that performs a key import operation.
Definition at line 1091 of file psa_crypto_se_driver.h.
psa_drv_se_validate_slot_number_t psa_drv_se_key_management_t::p_validate_slot_number |
Function that checks the validity of a slot for a key.
Definition at line 1089 of file psa_crypto_se_driver.h.