Remove unnecessary flag from CMAC context

This commit is contained in:
Janos Follath 2016-10-11 10:49:26 +01:00 committed by Simon Butcher
parent 4f85907b5a
commit 2b3b740574
2 changed files with 1 additions and 15 deletions

View file

@ -44,7 +44,6 @@ extern "C" {
*/
struct mbedtls_cmac_context_t
{
/** Internal state of the CMAC algorithm */
unsigned char state[MBEDTLS_CIPHER_BLKSIZE_MAX];
@ -54,9 +53,6 @@ struct mbedtls_cmac_context_t
/** Length of data pending to be processed */
size_t unprocessed_len;
/** Flag to indicate if the last block needs padding */
int padding_flag;
};
/**