Loading crypto/aes/aes_ctr.c +4 −4 Original line number Diff line number Diff line Loading @@ -68,7 +68,7 @@ static void AES_ctr128_inc(unsigned char *counter) { /* Grab bottom dword of counter and increment */ c = GETU32(counter + 12); c++; c++; c &= 0xFFFFFFFF; PUTU32(counter + 12, c); /* if no overflow, we're done */ Loading @@ -77,7 +77,7 @@ static void AES_ctr128_inc(unsigned char *counter) { /* Grab 1st dword of counter and increment */ c = GETU32(counter + 8); c++; c++; c &= 0xFFFFFFFF; PUTU32(counter + 8, c); /* if no overflow, we're done */ Loading @@ -86,7 +86,7 @@ static void AES_ctr128_inc(unsigned char *counter) { /* Grab 2nd dword of counter and increment */ c = GETU32(counter + 4); c++; c++; c &= 0xFFFFFFFF; PUTU32(counter + 4, c); /* if no overflow, we're done */ Loading @@ -95,7 +95,7 @@ static void AES_ctr128_inc(unsigned char *counter) { /* Grab top dword of counter and increment */ c = GETU32(counter + 0); c++; c++; c &= 0xFFFFFFFF; PUTU32(counter + 0, c); } Loading Loading
crypto/aes/aes_ctr.c +4 −4 Original line number Diff line number Diff line Loading @@ -68,7 +68,7 @@ static void AES_ctr128_inc(unsigned char *counter) { /* Grab bottom dword of counter and increment */ c = GETU32(counter + 12); c++; c++; c &= 0xFFFFFFFF; PUTU32(counter + 12, c); /* if no overflow, we're done */ Loading @@ -77,7 +77,7 @@ static void AES_ctr128_inc(unsigned char *counter) { /* Grab 1st dword of counter and increment */ c = GETU32(counter + 8); c++; c++; c &= 0xFFFFFFFF; PUTU32(counter + 8, c); /* if no overflow, we're done */ Loading @@ -86,7 +86,7 @@ static void AES_ctr128_inc(unsigned char *counter) { /* Grab 2nd dword of counter and increment */ c = GETU32(counter + 4); c++; c++; c &= 0xFFFFFFFF; PUTU32(counter + 4, c); /* if no overflow, we're done */ Loading @@ -95,7 +95,7 @@ static void AES_ctr128_inc(unsigned char *counter) { /* Grab top dword of counter and increment */ c = GETU32(counter + 0); c++; c++; c &= 0xFFFFFFFF; PUTU32(counter + 0, c); } Loading