Changed psa_drv_se_cipher_t.size to context_size to be consistent

This commit is contained in:
Derek Miller 2019-02-15 17:13:54 -06:00
parent 6211726c61
commit 34b33f198b

View File

@ -392,8 +392,8 @@ typedef struct {
/** The size in bytes of the hardware-specific Opaque Cipher context /** The size in bytes of the hardware-specific Opaque Cipher context
* structure * structure
*/ */
size_t size; size_t context_size;
/** Function that performs the setup operation */ /** Function that performs a cipher setup operation */
psa_drv_se_cipher_setup_t p_setup; psa_drv_se_cipher_setup_t p_setup;
/** Function that sets the IV (if necessary) */ /** Function that sets the IV (if necessary) */
psa_drv_se_cipher_set_iv_t p_set_iv; psa_drv_se_cipher_set_iv_t p_set_iv;