aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/aes192ctr_decrypt.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/aes192ctr_decrypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/aes192ctr_decrypt.c b/test/aes192ctr_decrypt.c
index e456fff..9508b8d 100644
--- a/test/aes192ctr_decrypt.c
+++ b/test/aes192ctr_decrypt.c
@@ -55,7 +55,7 @@ int main(int argc, char** argv)
fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv);
continue;
}
- plain = aes192ctr_decrypt(cipher, &key_schedule, iv, ctr++);
+ plain = aes192ctr_decrypt_block(cipher, &key_schedule, iv, ctr++);
print_aes_block128(&plain);
}
}