diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-10 03:56:20 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-10 03:56:20 +0300 |
commit | 7468cbc7c4e69bbd2593c71c8a22953f41536963 (patch) | |
tree | bbc0b0ebb62ceb7385a418701897cb5577f035f9 /test/aes256cbc_decrypt.c | |
parent | utils: usage message update (diff) | |
download | aes-tools-7468cbc7c4e69bbd2593c71c8a22953f41536963.tar.gz aes-tools-7468cbc7c4e69bbd2593c71c8a22953f41536963.zip |
refactoring
Diffstat (limited to 'test/aes256cbc_decrypt.c')
-rw-r--r-- | test/aes256cbc_decrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/aes256cbc_decrypt.c b/test/aes256cbc_decrypt.c index 5efb0e4..bab00ab 100644 --- a/test/aes256cbc_decrypt.c +++ b/test/aes256cbc_decrypt.c @@ -54,7 +54,7 @@ int main(int argc, char** argv) fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv); continue; } - plain = aes256cbc_decrypt(cipher, &inverted_schedule, iv, &iv); + plain = aes256cbc_decrypt_block(cipher, &inverted_schedule, iv, &iv); print_aes_block128(&plain); } } |