mirror of
https://github.com/kokke/tiny-AES-c.git
synced 2025-01-08 12:36:19 +08:00
Update aes.c
This commit is contained in:
parent
f92f371438
commit
9acae40f3e
2
aes.c
2
aes.c
@ -618,10 +618,12 @@ void AES_CTR_xcrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, con
|
||||
state = (state_t*)buffer;
|
||||
Cipher();
|
||||
|
||||
/* Increment counter and handle overflow */
|
||||
for (j = (BLOCKLEN - 1); j >= 0; --j)
|
||||
{
|
||||
counter[j] += 1;
|
||||
|
||||
/* Break if no overflow, keep going otherwise */
|
||||
if (counter[j] != 0)
|
||||
{
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user