psa_crypto_se_driver.h
Go to the documentation of this file.
1 /*
2  * Copyright The Mbed TLS Contributors
3  * SPDX-License-Identifier: Apache-2.0
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may
6  * not use this file except in compliance with the License.
7  *
8  * You may obtain a copy of the License at
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #pragma once
19 
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44 
45 #include <stdint.h>
46 #include <stdlib.h>
47 
48 #include "psa/crypto_values.h"
49 #include "psa/crypto_types.h"
50 
54 #define PSA_MAX_PERSISTENT_DATA_SIZE (16)
55 
70 typedef struct {
115  const void * persistent_data;
116 
123  const size_t persistent_data_size;
124 
131  uintptr_t transient_data;
133 
152  void *persistent_data,
153  psa_key_location_t location);
154 
158 typedef uint64_t psa_key_slot_number_t;
197  void *op_context,
198  psa_key_slot_number_t key_slot,
199  psa_algorithm_t algorithm);
200 
212 typedef psa_status_t (*psa_drv_se_mac_update_t)(void *op_context,
213  const uint8_t *p_input,
214  size_t input_length);
215 
232 typedef psa_status_t (*psa_drv_se_mac_finish_t)(void *op_context,
233  uint8_t *p_mac,
234  size_t mac_size,
235  size_t *p_mac_length);
236 
252 typedef psa_status_t (*psa_drv_se_mac_finish_verify_t)(void *op_context,
253  const uint8_t *p_mac,
254  size_t mac_length);
255 
262 typedef psa_status_t (*psa_drv_se_mac_abort_t)(void *op_context);
263 
283  const uint8_t *p_input,
284  size_t input_length,
285  psa_key_slot_number_t key_slot,
286  psa_algorithm_t alg,
287  uint8_t *p_mac,
288  size_t mac_size,
289  size_t *p_mac_length);
290 
311  const uint8_t *p_input,
312  size_t input_length,
313  psa_key_slot_number_t key_slot,
314  psa_algorithm_t alg,
315  const uint8_t *p_mac,
316  size_t mac_length);
317 
334 typedef struct {
336  size_t context_size;
396  void *op_context,
397  psa_key_slot_number_t key_slot,
398  psa_algorithm_t algorithm,
399  psa_encrypt_or_decrypt_t direction);
400 
417 typedef psa_status_t (*psa_drv_se_cipher_set_iv_t)(void *op_context,
418  const uint8_t *p_iv,
419  size_t iv_length);
420 
440 typedef psa_status_t (*psa_drv_se_cipher_update_t)(void *op_context,
441  const uint8_t *p_input,
442  size_t input_size,
443  uint8_t *p_output,
444  size_t output_size,
445  size_t *p_output_length);
446 
462 typedef psa_status_t (*psa_drv_se_cipher_finish_t)(void *op_context,
463  uint8_t *p_output,
464  size_t output_size,
465  size_t *p_output_length);
466 
474 typedef psa_status_t (*psa_drv_se_cipher_abort_t)(void *op_context);
475 
501  psa_key_slot_number_t key_slot,
502  psa_algorithm_t algorithm,
503  psa_encrypt_or_decrypt_t direction,
504  const uint8_t *p_input,
505  size_t input_size,
506  uint8_t *p_output,
507  size_t output_size);
508 
519 typedef struct {
521  size_t context_size;
539 
569  psa_key_slot_number_t key_slot,
570  psa_algorithm_t alg,
571  const uint8_t *p_hash,
572  size_t hash_length,
573  uint8_t *p_signature,
574  size_t signature_size,
575  size_t *p_signature_length);
576 
594  psa_key_slot_number_t key_slot,
595  psa_algorithm_t alg,
596  const uint8_t *p_hash,
597  size_t hash_length,
598  const uint8_t *p_signature,
599  size_t signature_length);
600 
631  psa_key_slot_number_t key_slot,
632  psa_algorithm_t alg,
633  const uint8_t *p_input,
634  size_t input_length,
635  const uint8_t *p_salt,
636  size_t salt_length,
637  uint8_t *p_output,
638  size_t output_size,
639  size_t *p_output_length);
640 
671  psa_key_slot_number_t key_slot,
672  psa_algorithm_t alg,
673  const uint8_t *p_input,
674  size_t input_length,
675  const uint8_t *p_salt,
676  size_t salt_length,
677  uint8_t *p_output,
678  size_t output_size,
679  size_t *p_output_length);
680 
690 typedef struct {
700 
745  psa_key_slot_number_t key_slot,
746  psa_algorithm_t algorithm,
747  const uint8_t *p_nonce,
748  size_t nonce_length,
749  const uint8_t *p_additional_data,
750  size_t additional_data_length,
751  const uint8_t *p_plaintext,
752  size_t plaintext_length,
753  uint8_t *p_ciphertext,
754  size_t ciphertext_size,
755  size_t *p_ciphertext_length);
756 
787  psa_key_slot_number_t key_slot,
788  psa_algorithm_t algorithm,
789  const uint8_t *p_nonce,
790  size_t nonce_length,
791  const uint8_t *p_additional_data,
792  size_t additional_data_length,
793  const uint8_t *p_ciphertext,
794  size_t ciphertext_length,
795  uint8_t *p_plaintext,
796  size_t plaintext_size,
797  size_t *p_plaintext_length);
798 
808 typedef struct {
830 typedef enum {
836 
897  void *persistent_data,
898  const psa_key_attributes_t *attributes,
900  psa_key_slot_number_t *key_slot);
901 
939  void *persistent_data,
940  const psa_key_attributes_t *attributes,
942  psa_key_slot_number_t key_slot);
943 
973  psa_key_slot_number_t key_slot,
974  const psa_key_attributes_t *attributes,
975  const uint8_t *data,
976  size_t data_length,
977  size_t *bits);
978 
997  void *persistent_data,
998  psa_key_slot_number_t key_slot);
999 
1030  psa_key_slot_number_t key_slot,
1031  uint8_t *p_data,
1032  size_t data_size,
1033  size_t *p_data_length);
1034 
1070  psa_key_slot_number_t key_slot,
1071  const psa_key_attributes_t *attributes,
1072  uint8_t *pubkey, size_t pubkey_size,
1073  size_t *pubkey_length);
1074 
1084 typedef struct {
1100 
1170  void *op_context,
1171  psa_algorithm_t kdf_alg,
1172  psa_key_slot_number_t source_key);
1173 
1191  uint32_t collateral_id,
1192  const uint8_t *p_collateral,
1193  size_t collateral_size);
1194 
1206  psa_key_slot_number_t dest_key);
1207 
1222  uint8_t *p_output,
1223  size_t output_size,
1224  size_t *p_output_length);
1225 
1235 typedef struct {
1247 
1261 typedef struct {
1268  uint32_t hal_version;
1269 
1280 
1293 
1300 } psa_drv_se_t;
1306 #define PSA_DRV_SE_HAL_VERSION 0x00000005
1307 
1308 #ifdef __cplusplus
1309 }
1310 #endif
1311 
uint32_t psa_algorithm_t
Encoding of a cryptographic algorithm.
Definition: algorithm.h:38
Type definitions for PSA Crypto.
psa_encrypt_or_decrypt_t
For encrypt-decrypt functions, whether the operation is an encryption or a decryption.
Definition: crypto_types.h:36
Value definitions for PSA Crypto.
psa_status_t(* psa_drv_se_key_derivation_export_t)(void *op_context, uint8_t *p_output, size_t output_size, size_t *p_output_length)
A function that performs the final step of a secure element key agreement and place the generated key...
psa_status_t(* psa_drv_se_key_derivation_derive_t)(void *op_context, psa_key_slot_number_t dest_key)
A function that performs the final secure element key derivation step and place the generated key mat...
psa_status_t(* psa_drv_se_key_derivation_collateral_t)(void *op_context, uint32_t collateral_id, const uint8_t *p_collateral, size_t collateral_size)
A function that provides collateral (parameters) needed for a secure element key derivation or key ag...
psa_status_t(* psa_drv_se_key_derivation_setup_t)(psa_drv_se_context_t *drv_context, void *op_context, psa_algorithm_t kdf_alg, psa_key_slot_number_t source_key)
A function that Sets up a secure element key derivation operation by specifying the algorithm and the...
psa_status_t(* psa_drv_se_aead_encrypt_t)(psa_drv_se_context_t *drv_context, psa_key_slot_number_t key_slot, psa_algorithm_t algorithm, const uint8_t *p_nonce, size_t nonce_length, const uint8_t *p_additional_data, size_t additional_data_length, const uint8_t *p_plaintext, size_t plaintext_length, uint8_t *p_ciphertext, size_t ciphertext_size, size_t *p_ciphertext_length)
A function that performs a secure element authenticated encryption operation.
psa_status_t(* psa_drv_se_aead_decrypt_t)(psa_drv_se_context_t *drv_context, psa_key_slot_number_t key_slot, psa_algorithm_t algorithm, const uint8_t *p_nonce, size_t nonce_length, const uint8_t *p_additional_data, size_t additional_data_length, const uint8_t *p_ciphertext, size_t ciphertext_length, uint8_t *p_plaintext, size_t plaintext_size, size_t *p_plaintext_length)
A function that performs a secure element authenticated decryption operation.
psa_status_t(* psa_drv_se_asymmetric_decrypt_t)(psa_drv_se_context_t *drv_context, psa_key_slot_number_t key_slot, psa_algorithm_t alg, const uint8_t *p_input, size_t input_length, const uint8_t *p_salt, size_t salt_length, uint8_t *p_output, size_t output_size, size_t *p_output_length)
A function that decrypts a short message with an asymmetric private key in a secure element.
psa_status_t(* psa_drv_se_asymmetric_encrypt_t)(psa_drv_se_context_t *drv_context, psa_key_slot_number_t key_slot, psa_algorithm_t alg, const uint8_t *p_input, size_t input_length, const uint8_t *p_salt, size_t salt_length, uint8_t *p_output, size_t output_size, size_t *p_output_length)
A function that encrypts a short message with an asymmetric public key in a secure element.
psa_status_t(* psa_drv_se_asymmetric_sign_t)(psa_drv_se_context_t *drv_context, psa_key_slot_number_t key_slot, psa_algorithm_t alg, const uint8_t *p_hash, size_t hash_length, uint8_t *p_signature, size_t signature_size, size_t *p_signature_length)
A function that signs a hash or short message with a private key in a secure element.
psa_status_t(* psa_drv_se_asymmetric_verify_t)(psa_drv_se_context_t *drv_context, psa_key_slot_number_t key_slot, psa_algorithm_t alg, const uint8_t *p_hash, size_t hash_length, const uint8_t *p_signature, size_t signature_length)
A function that verifies the signature a hash or short message using an asymmetric public key in a se...
psa_status_t(* psa_drv_se_cipher_finish_t)(void *op_context, uint8_t *p_output, size_t output_size, size_t *p_output_length)
A function that completes a previously started secure element cipher operation.
psa_status_t(* psa_drv_se_cipher_abort_t)(void *op_context)
A function that aborts a previously started secure element cipher operation.
psa_status_t(* psa_drv_se_cipher_set_iv_t)(void *op_context, const uint8_t *p_iv, size_t iv_length)
A function that sets the initialization vector (if necessary) for an secure element cipher operation.
psa_status_t(* psa_drv_se_cipher_setup_t)(psa_drv_se_context_t *drv_context, void *op_context, psa_key_slot_number_t key_slot, psa_algorithm_t algorithm, psa_encrypt_or_decrypt_t direction)
A function that provides the cipher setup function for a secure element driver.
psa_status_t(* psa_drv_se_cipher_ecb_t)(psa_drv_se_context_t *drv_context, psa_key_slot_number_t key_slot, psa_algorithm_t algorithm, psa_encrypt_or_decrypt_t direction, const uint8_t *p_input, size_t input_size, uint8_t *p_output, size_t output_size)
A function that performs the ECB block mode for secure element cipher operations.
psa_status_t(* psa_drv_se_cipher_update_t)(void *op_context, const uint8_t *p_input, size_t input_size, uint8_t *p_output, size_t output_size, size_t *p_output_length)
A function that continues a previously started secure element cipher operation.
psa_status_t(* psa_drv_se_init_t)(psa_drv_se_context_t *drv_context, void *persistent_data, psa_key_location_t location)
A driver initialization function.
uint64_t psa_key_slot_number_t
Encoding of a key slot number on a secure element.
psa_status_t(* psa_drv_se_validate_slot_number_t)(psa_drv_se_context_t *drv_context, void *persistent_data, const psa_key_attributes_t *attributes, psa_key_creation_method_t method, psa_key_slot_number_t key_slot)
A function that determines whether a slot number is valid for a key.
psa_status_t(* psa_drv_se_generate_key_t)(psa_drv_se_context_t *drv_context, psa_key_slot_number_t key_slot, const psa_key_attributes_t *attributes, uint8_t *pubkey, size_t pubkey_size, size_t *pubkey_length)
A function that generates a symmetric or asymmetric key on a secure element.
psa_key_creation_method_t
An enumeration indicating how a key is created.
psa_status_t(* psa_drv_se_import_key_t)(psa_drv_se_context_t *drv_context, psa_key_slot_number_t key_slot, const psa_key_attributes_t *attributes, const uint8_t *data, size_t data_length, size_t *bits)
A function that imports a key into a secure element in binary format.
psa_status_t(* psa_drv_se_allocate_key_t)(psa_drv_se_context_t *drv_context, void *persistent_data, const psa_key_attributes_t *attributes, psa_key_creation_method_t method, psa_key_slot_number_t *key_slot)
A function that allocates a slot for a key.
psa_status_t(* psa_drv_se_destroy_key_t)(psa_drv_se_context_t *drv_context, void *persistent_data, psa_key_slot_number_t key_slot)
A function that destroys a secure element key and restore the slot to its default state.
psa_status_t(* psa_drv_se_export_key_t)(psa_drv_se_context_t *drv_context, psa_key_slot_number_t key_slot, uint8_t *p_data, size_t data_size, size_t *p_data_length)
A function that exports a secure element key in binary format.
@ PSA_KEY_CREATION_COPY
During psa_copy_key()
@ PSA_KEY_CREATION_IMPORT
During psa_import_key()
@ PSA_KEY_CREATION_DERIVE
During psa_key_derivation_output_key()
@ PSA_KEY_CREATION_GENERATE
During psa_generate_key()
psa_status_t(* psa_drv_se_mac_setup_t)(psa_drv_se_context_t *drv_context, void *op_context, psa_key_slot_number_t key_slot, psa_algorithm_t algorithm)
A function that starts a secure element MAC operation for a PSA Crypto Driver implementation.
psa_status_t(* psa_drv_se_mac_update_t)(void *op_context, const uint8_t *p_input, size_t input_length)
A function that continues a previously started secure element MAC operation.
psa_status_t(* psa_drv_se_mac_finish_verify_t)(void *op_context, const uint8_t *p_mac, size_t mac_length)
A function that completes a previously started secure element MAC operation by comparing the resultin...
psa_status_t(* psa_drv_se_mac_abort_t)(void *op_context)
A function that aborts a previous started secure element MAC operation.
psa_status_t(* psa_drv_se_mac_verify_t)(psa_drv_se_context_t *drv_context, const uint8_t *p_input, size_t input_length, psa_key_slot_number_t key_slot, psa_algorithm_t alg, const uint8_t *p_mac, size_t mac_length)
A function that performs a secure element MAC operation in one command and compares the resulting MAC...
psa_status_t(* psa_drv_se_mac_finish_t)(void *op_context, uint8_t *p_mac, size_t mac_size, size_t *p_mac_length)
A function that completes a previously started secure element MAC operation by returning the resultin...
psa_status_t(* psa_drv_se_mac_generate_t)(psa_drv_se_context_t *drv_context, const uint8_t *p_input, size_t input_length, psa_key_slot_number_t key_slot, psa_algorithm_t alg, uint8_t *p_mac, size_t mac_size, size_t *p_mac_length)
A function that performs a secure element MAC operation in one command and returns the calculated MAC...
uint32_t psa_key_location_t
Encoding of key location indicators.
Definition: lifetime.h:142
int32_t psa_status_t
Status code type used for all PSA Certified APIs.
Definition: error.h:40
A struct containing all of the function pointers needed to implement secure element Authenticated Enc...
psa_drv_se_aead_encrypt_t p_encrypt
Function that performs the AEAD encrypt operation.
psa_drv_se_aead_decrypt_t p_decrypt
Function that performs the AEAD decrypt operation.
A struct containing all of the function pointers needed to implement asymmetric cryptographic operati...
psa_drv_se_asymmetric_verify_t p_verify
Function that performs an asymmetric verify operation.
psa_drv_se_asymmetric_sign_t p_sign
Function that performs an asymmetric sign operation.
psa_drv_se_asymmetric_encrypt_t p_encrypt
Function that performs an asymmetric encrypt operation.
psa_drv_se_asymmetric_decrypt_t p_decrypt
Function that performs an asymmetric decrypt operation.
A struct containing all of the function pointers needed to implement cipher operations using secure e...
size_t context_size
The size in bytes of the hardware-specific secure element cipher context structure.
psa_drv_se_cipher_setup_t p_setup
Function that performs a cipher setup operation.
psa_drv_se_cipher_finish_t p_finish
Function that completes a cipher operation.
psa_drv_se_cipher_set_iv_t p_set_iv
Function that sets a cipher IV (if necessary)
psa_drv_se_cipher_ecb_t p_ecb
Function that performs ECB mode for a cipher operation.
psa_drv_se_cipher_abort_t p_abort
Function that aborts a cipher operation.
psa_drv_se_cipher_update_t p_update
Function that performs a cipher update operation.
Driver context structure.
uintptr_t transient_data
Driver transient data.
const void * persistent_data
A read-only pointer to the driver's persistent data.
const size_t persistent_data_size
The size of persistent_data in bytes.
A struct containing all of the function pointers needed to for secure element key derivation and agre...
psa_drv_se_key_derivation_setup_t p_setup
Function that performs a key derivation setup.
psa_drv_se_key_derivation_collateral_t p_collateral
Function that sets key derivation collateral.
psa_drv_se_key_derivation_export_t p_export
Function that perforsm a final key derivation or agreement and exports the key.
psa_drv_se_key_derivation_derive_t p_derive
Function that performs a final key derivation step.
size_t context_size
The driver-specific size of the key derivation context.
A struct containing all of the function pointers needed to for secure element key management.
psa_drv_se_export_key_t p_export
Function that performs a key export operation.
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_destroy_key_t p_destroy
Function that performs a key destroy operation.
psa_drv_se_generate_key_t p_generate
Function that performs a generation.
psa_drv_se_allocate_key_t p_allocate
Function that allocates a slot for a key.
psa_drv_se_export_key_t p_export_public
Function that performs a public key export operation.
A struct containing all of the function pointers needed to perform secure element MAC operations.
psa_drv_se_mac_setup_t p_setup
Function that performs a MAC setup operation.
psa_drv_se_mac_update_t p_update
Function that performs a MAC update operation.
size_t context_size
The size in bytes of the hardware-specific secure element MAC context structure.
psa_drv_se_mac_verify_t p_mac_verify
Function that performs a MAC and verify operation in one call.
psa_drv_se_mac_finish_t p_finish
Function that completes a MAC operation.
psa_drv_se_mac_abort_t p_abort
Function that aborts a previoustly started MAC operation.
psa_drv_se_mac_finish_verify_t p_finish_verify
Function that completes a MAC operation with a verify check.
psa_drv_se_mac_generate_t p_mac
Function that performs a MAC operation in one call.
A structure containing pointers to all the entry points of a secure element driver.
size_t persistent_data_size
The size of the driver's persistent data in bytes.
const psa_drv_se_key_management_t * key_management
Key management methods.
const psa_drv_se_aead_t * aead
AEAD operation methods.
const psa_drv_se_cipher_t * cipher
Cipher operation methods.
const psa_drv_se_asymmetric_t * asymmetric
Asymmetric operation methods.
const psa_drv_se_mac_t * mac
MAC operation methods.
psa_drv_se_init_t p_init
The driver initialization function.
const psa_drv_se_key_derivation_t * derivation
Key derivation methods.
uint32_t hal_version
The version of the driver HAL that this driver implements.
Structure storing key attributes.
Definition: attributes.h:51