mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Correct AES counter mode, which incorrectly incremented the counter before
using it. PR: 56
This commit is contained in:
parent
6cbe638294
commit
dbdc5d14d3
@ -106,8 +106,8 @@ void AES_ctr128_encrypt(const unsigned char *in, unsigned char *out,
|
||||
|
||||
while (l--) {
|
||||
if (n == 0) {
|
||||
AES_ctr128_inc(counter);
|
||||
AES_encrypt(counter, tmp, key);
|
||||
AES_ctr128_inc(counter);
|
||||
}
|
||||
*(out++) = *(in++) ^ tmp[n];
|
||||
n = (n+1) % AES_BLOCK_SIZE;
|
||||
|
Loading…
Reference in New Issue
Block a user