diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-30 05:27:56 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-30 05:27:56 +0300 |
commit | 76923761ea90641cde3bd44dfa98e199bf839acc (patch) | |
tree | 73ee71882069c28c182d45fcd11b775d6ebf4d44 /test/aes256cbc_decrypt_block.c | |
parent | detach key expansion routines (diff) | |
download | aes-tools-76923761ea90641cde3bd44dfa98e199bf839acc.tar.gz aes-tools-76923761ea90641cde3bd44dfa98e199bf839acc.zip |
test: actually chain when in cbc mode
Diffstat (limited to 'test/aes256cbc_decrypt_block.c')
-rw-r--r-- | test/aes256cbc_decrypt_block.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/aes256cbc_decrypt_block.c b/test/aes256cbc_decrypt_block.c index bb082d5..43b8091 100644 --- a/test/aes256cbc_decrypt_block.c +++ b/test/aes256cbc_decrypt_block.c @@ -49,6 +49,7 @@ int main(int argc, char** argv) continue; } plain = aes256cbc_decrypt(cipher, &inverted_schedule, &iv); + iv = cipher; print_aes_block128(&plain); } |