aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/aes256cbc_decrypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/aes256cbc_decrypt.c')
-rw-r--r--test/aes256cbc_decrypt.c2
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);
}
}