diff options
Diffstat (limited to 'test/aes192ofb_encrypt_block.c')
-rw-r--r-- | test/aes192ofb_encrypt_block.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/aes192ofb_encrypt_block.c b/test/aes192ofb_encrypt_block.c index a3fb944..8c866c3 100644 --- a/test/aes192ofb_encrypt_block.c +++ b/test/aes192ofb_encrypt_block.c @@ -47,8 +47,7 @@ int main(int argc, char** argv) fprintf(stderr, "Invalid 128-bit AES block '%s'\n", argv[i]); continue; } - cipher = aes192cfb_encrypt(plain, &key_schedule, iv); - iv = _mm_xor_si128(cipher, plain); + cipher = aes192ofb_encrypt(plain, &key_schedule, iv, &iv); print_aes_block128(&cipher); } |