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