Unverified Commit bacca1bd authored by kokke's avatar kokke Committed by GitHub
Browse files

Update aes.c

parent fbaaf619
......@@ -609,7 +609,8 @@ void AES_CTR_xcrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, con
Key = key;
KeyExpansion();
int i, j;
int j;
unsigned i;
for (i = 0; i < length; ++i)
{
if ((i & (BLOCKLEN - 1)) == 0)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment