From 34b33f198bbf3285a1fe2a36a899b14215649f07 Mon Sep 17 00:00:00 2001 From: Derek Miller Date: Fri, 15 Feb 2019 17:13:54 -0600 Subject: [PATCH] Changed psa_drv_se_cipher_t.size to context_size to be consistent --- include/psa/crypto_se_driver.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/psa/crypto_se_driver.h b/include/psa/crypto_se_driver.h index 98d4767b1..438067f26 100644 --- a/include/psa/crypto_se_driver.h +++ b/include/psa/crypto_se_driver.h @@ -392,8 +392,8 @@ typedef struct { /** The size in bytes of the hardware-specific Opaque Cipher context * structure */ - size_t size; - /** Function that performs the setup operation */ + size_t context_size; + /** Function that performs a cipher setup operation */ psa_drv_se_cipher_setup_t p_setup; /** Function that sets the IV (if necessary) */ psa_drv_se_cipher_set_iv_t p_set_iv;