21 #ifndef PSA_CRYPTO_CBOR_ENCODER_H
22 #define PSA_CRYPTO_CBOR_ENCODER_H
34 #define CBOR_BUF_SIZE_START ( 1 + \
36 1 + sizeof(psa_key_id_t) + \
37 1 + sizeof(psa_key_type_t) + \
38 1 + sizeof(psa_key_bits_t) + \
39 1 + sizeof(psa_key_lifetime_t) + \
41 1 + sizeof(psa_key_usage_t) + \
42 1 + sizeof(psa_algorithm_t) \
45 #if PSA_SINGLE_KEY_COUNT
50 #define CBOR_BUF_SIZE_SINGLE_KEY ( CBOR_BUF_SIZE_START + \
52 PSA_MAX_KEY_DATA_SIZE \
56 #if PSA_ASYMMETRIC_KEYPAIR_COUNT
61 #define CBOR_BUF_SIZE_KEY_PAIR ( CBOR_BUF_SIZE_START + \
63 3 + PSA_BITS_TO_BYTES(PSA_MAX_PRIV_KEY_SIZE) + \
64 3 + PSA_EXPORT_PUBLIC_KEY_MAX_SIZE \
68 #if PSA_PROTECTED_KEY_COUNT && IS_USED(MODULE_PSA_ASYMMETRIC)
73 #define CBOR_BUF_SIZE_PROT_KEY ( CBOR_BUF_SIZE_START + \
75 1 + sizeof(psa_key_slot_number_t) + \
76 3 + PSA_EXPORT_PUBLIC_KEY_MAX_SIZE \
78 #elif PSA_PROTECTED_KEY_COUNT
83 #define CBOR_BUF_SIZE_PROT_KEY ( CBOR_BUF_SIZE_START + \
85 1 + sizeof(psa_key_slot_number_t) \
118 size_t output_len,
size_t *output_size);
130 size_t cbor_buf_size);
142 size_t cbor_buf_size);
psa_status_t psa_decode_key_slot_data(psa_key_slot_t *slot, uint8_t *cbor_buf, size_t cbor_buf_size)
Decode CBOR encoded key data and write to PSA key slot.
psa_status_t psa_decode_key_attributes(psa_key_attributes_t *attr, uint8_t *cbor_buf, size_t cbor_buf_size)
Decode CBOR PSA key attributes.
psa_status_t psa_encode_key_slot(psa_key_slot_t *slot, uint8_t *output, size_t output_len, size_t *output_size)
Encodes a basic key slot in CBOR.
int32_t psa_status_t
Status code type used for all PSA Certified APIs.
PSA key slot management function declarations.
Structure storing key attributes.
Structure of a virtual key slot in local memory.