From 76923761ea90641cde3bd44dfa98e199bf839acc Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 30 May 2015 05:27:56 +0300 Subject: test: actually chain when in cbc mode --- test/aes128cbc_encrypt_block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/aes128cbc_encrypt_block.c') diff --git a/test/aes128cbc_encrypt_block.c b/test/aes128cbc_encrypt_block.c index e35a1bf..38faf1a 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; } - cipher = aes128cbc_encrypt(plain, &key_schedule, &iv); + iv = cipher = aes128cbc_encrypt(plain, &key_schedule, &iv); print_aes_block128(&cipher); } -- cgit v1.2.3