Mbed OS Reference
|
Encryption and Decryption using hardware-acceleration in block modes other than ECB must be done in multiple parts, using the following flow: More...
Typedefs | |
typedef struct psa_drv_accel_cipher_context_s | psa_drv_accel_cipher_context_t |
The hardware-accelerator-specific cipher context structure. More... | |
typedef psa_status_t(* | psa_drv_accel_cipher_setup_t) (psa_drv_accel_cipher_context_t *p_context, psa_encrypt_or_decrypt_t direction, const uint8_t *p_key_data, size_t key_data_size) |
The function prototype for the setup operation of hardware-accelerated block cipher operations. More... | |
typedef psa_status_t(* | psa_drv_accel_cipher_set_iv_t) (psa_drv_accel_cipher_context_t *p_context, const uint8_t *p_iv, size_t iv_length) |
The function prototype for the set initialization vector operation of hardware-accelerated block cipher operations Functions that implement this prototype should be named in the following convention: More... | |
typedef psa_status_t(* | psa_drv_accel_cipher_update_t) (psa_drv_accel_cipher_context_t *p_context, const uint8_t *p_input, size_t input_size, uint8_t *p_output, size_t output_size, size_t *p_output_length) |
The function prototype for the update operation of hardware-accelerated block cipher operations. More... | |
typedef psa_status_t(* | psa_drv_accel_cipher_finish_t) (psa_drv_accel_cipher_context_t *p_context, uint8_t *p_output, size_t output_size, size_t *p_output_length) |
The function prototype for the finish operation of hardware-accelerated block cipher operations. More... | |
typedef psa_status_t(* | psa_drv_accel_cipher_abort_t) (psa_drv_accel_cipher_context_t *p_context) |
The function prototype for the abort operation of hardware-accelerated block cipher operations. More... | |
Encryption and Decryption using hardware-acceleration in block modes other than ECB must be done in multiple parts, using the following flow:
psa_drv_accel_ciphersetup_t
psa_drv_accel_cipher_set_iv_t
(optional depending upon block mode)psa_drv_accel_cipher_update_t
psa_drv_accel_cipher_update_t
psa_drv_accel_cipher_finish_t
If a previously started hardware-accelerated Cipher operation needs to be terminated, it should be done so by the psa_drv_accel_cipher_abort_t
. Failure to do so may result in allocated resources not being freed or in other undefined behavior.
typedef struct psa_drv_accel_cipher_context_s psa_drv_accel_cipher_context_t |
The hardware-accelerator-specific cipher context structure.
The contents of this structure are implementation dependent and are therefore not described here.
Definition at line 375 of file crypto_accel_driver.h.
typedef psa_status_t(* psa_drv_accel_cipher_setup_t) (psa_drv_accel_cipher_context_t *p_context, psa_encrypt_or_decrypt_t direction, const uint8_t *p_key_data, size_t key_data_size) |
The function prototype for the setup operation of hardware-accelerated block cipher operations.
Functions that implement this prototype should be named in the following conventions:
Where
CIPHER_NAME
is the name of the underlying block cipher (i.e. AES or DES)MODE
is the block mode of the cipher operation (i.e. CBC or CTR)For stream ciphers:
Where CIPHER_NAME
is the name of a stream cipher (i.e. RC4)
[in,out] | p_context | A structure that will contain the hardware-specific cipher context |
[in] | direction | Indicates if the operation is an encrypt or a decrypt |
[in] | p_key_data | A buffer containing the cleartext key material to be used in the operation |
[in] | key_data_size | The size in bytes of the key material |
PSA_SUCCESS |
Definition at line 404 of file crypto_accel_driver.h.
typedef psa_status_t(* psa_drv_accel_cipher_set_iv_t) (psa_drv_accel_cipher_context_t *p_context, const uint8_t *p_iv, size_t iv_length) |
The function prototype for the set initialization vector operation of hardware-accelerated block cipher operations Functions that implement this prototype should be named in the following convention:
Where
CIPHER_NAME
is the name of the underlying block cipher (i.e. AES or DES)MODE
is the block mode of the cipher operation (i.e. CBC or CTR)[in,out] | p_context | A structure that contains the previously setup hardware-specific cipher context |
[in] | p_iv | A buffer containing the initialization vecotr |
[in] | iv_length | The size in bytes of the contents of p_iv |
PSA_SUCCESS |
Definition at line 427 of file crypto_accel_driver.h.
typedef psa_status_t(* psa_drv_accel_cipher_update_t) (psa_drv_accel_cipher_context_t *p_context, const uint8_t *p_input, size_t input_size, uint8_t *p_output, size_t output_size, size_t *p_output_length) |
The function prototype for the update operation of hardware-accelerated block cipher operations.
Functions that implement this prototype should be named in the following convention:
Where
CIPHER_NAME
is the name of the underlying block cipher (i.e. AES or DES)MODE
is the block mode of the cipher operation (i.e. CBC or CTR)[in,out] | p_context | A hardware-specific structure for the previously started cipher operation |
[in] | p_input | A buffer containing the data to be encrypted or decrypted |
[in] | input_size | The size in bytes of the p_input buffer |
[out] | p_output | A caller-allocated buffer where the generated output will be placed |
[in] | output_size | The size in bytes of the p_output buffer |
[out] | p_output_length | After completion, will contain the number of bytes placed in the p_output buffer |
PSA_SUCCESS |
Definition at line 456 of file crypto_accel_driver.h.
typedef psa_status_t(* psa_drv_accel_cipher_finish_t) (psa_drv_accel_cipher_context_t *p_context, uint8_t *p_output, size_t output_size, size_t *p_output_length) |
The function prototype for the finish operation of hardware-accelerated block cipher operations.
Functions that implement this prototype should be named in the following convention:
Where
CIPHER_NAME
is the name of the underlying block cipher (i.e. AES or DES)MODE
is the block mode of the cipher operation (i.e. CBC or CTR)[in,out] | p_context | A hardware-specific structure for the previously started cipher operation |
[out] | p_output | A caller-allocated buffer where the generated output will be placed |
[in] | output_size | The size in bytes of the p_output buffer |
[out] | p_output_length | After completion, will contain the number of bytes placed in the p_output buffer |
PSA_SUCCESS |
Definition at line 485 of file crypto_accel_driver.h.
typedef psa_status_t(* psa_drv_accel_cipher_abort_t) (psa_drv_accel_cipher_context_t *p_context) |
The function prototype for the abort operation of hardware-accelerated block cipher operations.
Functions that implement the following prototype should be named in the following convention:
Where
CIPHER_NAME
is the name of the underlying block cipher (i.e. AES or DES)MODE
is the block mode of the cipher operation (i.e. CBC or CTR)[in,out] | p_context | A hardware-specific structure for the previously started cipher operation |
PSA_SUCCESS |
Definition at line 507 of file crypto_accel_driver.h.