diff options
Diffstat (limited to 'test/aes192cbc_decrypt_block.c')
-rw-r--r-- | test/aes192cbc_decrypt_block.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/aes192cbc_decrypt_block.c b/test/aes192cbc_decrypt_block.c index 79eb692..57786ef 100644 --- a/test/aes192cbc_decrypt_block.c +++ b/test/aes192cbc_decrypt_block.c @@ -48,7 +48,7 @@ int main(int argc, char** argv) fprintf(stderr, "Invalid 128-bit AES block '%s'\n", argv[i]); continue; } - plain = aes192cbc_decrypt(cipher, &inverted_schedule, &iv); + plain = aes192cbc_decrypt(cipher, &inverted_schedule, iv); iv = cipher; print_aes_block128(&plain); } |