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