Files | |
file | psa_crypto_persistent_storage.h |
Functions | |
psa_status_t | psa_write_encoded_key_slot_to_file (psa_key_id_t id, uint8_t *input, size_t input_len) |
Writes a CBOR encoded key slot to a file. | |
psa_status_t | psa_read_encoded_key_slot_from_file (psa_key_id_t id, uint8_t *output, size_t output_size, size_t *output_data_len) |
Reads a CBOR encoded key slot from a file. | |
psa_status_t | psa_destroy_persistent_key (psa_key_id_t key_id) |
Destroy a key in persistent storage. | |
psa_status_t psa_destroy_persistent_key | ( | psa_key_id_t | key_id | ) |
Destroy a key in persistent storage.
key_id | ID of the key to be destroyed |
psa_status_t psa_read_encoded_key_slot_from_file | ( | psa_key_id_t | id, |
uint8_t * | output, | ||
size_t | output_size, | ||
size_t * | output_data_len | ||
) |
Reads a CBOR encoded key slot from a file.
id | ID of the desired key |
output | Output buffer to write CBOR data to |
output_size | Size of output buffer |
output_data_len | Actual length of CBOR encoded data |
psa_status_t psa_write_encoded_key_slot_to_file | ( | psa_key_id_t | id, |
uint8_t * | input, | ||
size_t | input_len | ||
) |
Writes a CBOR encoded key slot to a file.
id | ID of slot, used as filename |
input | Pointer to CBOR encoded data |
input_len | Length of CBOR encoded data |