aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/aes128cbc_encrypt_block.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/aes128cbc_encrypt_block.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/aes128cbc_encrypt_block.c b/test/aes128cbc_encrypt_block.c
index 14e7df7..a4a1675 100644
--- a/test/aes128cbc_encrypt_block.c
+++ b/test/aes128cbc_encrypt_block.c
@@ -46,7 +46,7 @@ int main(int argc, char** argv)
fprintf(stderr, "Invalid 128-bit AES block '%s'\n", argv[i]);
continue;
}
- iv = cipher = aes128cbc_encrypt(plain, &key_schedule, iv);
+ cipher = aes128cbc_encrypt(plain, &key_schedule, iv, &iv);
print_aes_block128(&cipher);
}