diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/crypto_native/aes_cbc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/crypto_native/aes_cbc.c b/src/plugins/crypto_native/aes_cbc.c index 247322dab0d..20b6fd61499 100644 --- a/src/plugins/crypto_native/aes_cbc.c +++ b/src/plugins/crypto_native/aes_cbc.c @@ -317,9 +317,9 @@ more: { #ifdef __VAES__ r[0] = u8x64_xor3 (r[0], aes_block_load_x4 (src, i), k[0][0]); - r[1] = u8x64_xor3 (r[1], aes_block_load_x4 (src, i), k[0][1]); - r[2] = u8x64_xor3 (r[2], aes_block_load_x4 (src, i), k[0][2]); - r[3] = u8x64_xor3 (r[3], aes_block_load_x4 (src, i), k[0][3]); + r[1] = u8x64_xor3 (r[1], aes_block_load_x4 (src + 4, i), k[0][1]); + r[2] = u8x64_xor3 (r[2], aes_block_load_x4 (src + 8, i), k[0][2]); + r[3] = u8x64_xor3 (r[3], aes_block_load_x4 (src + 12, i), k[0][3]); for (j = 1; j < rounds; j++) { |