mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Remove unnecessary flag from CMAC context
This commit is contained in:
committed by
Simon Butcher
parent
4f85907b5a
commit
2b3b740574
@ -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;
|
||||
};
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user