aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/aes192cbc_decrypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/aes192cbc_decrypt.c')
-rw-r--r--test/aes192cbc_decrypt.c59
1 files changed, 33 insertions, 26 deletions
diff --git a/test/aes192cbc_decrypt.c b/test/aes192cbc_decrypt.c
index 0a2cf99..2b2e235 100644
--- a/test/aes192cbc_decrypt.c
+++ b/test/aes192cbc_decrypt.c
@@ -10,46 +10,53 @@
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
-static void exit_with_usage(const char* argv0)
+static void exit_with_usage()
{
- printf("Usage: %s KEY INIT_VECTOR [CIPHER...]\n", argv0);
+ puts("Usage: aes192cbc_decrypt.exe KEY0 IV0 [CIPHER0...] [-- KEY1 IV1 [CIPHER1...]...]");
exit(EXIT_FAILURE);
}
int main(int argc, char** argv)
{
- AesBlock128 plain, cipher, iv;
- AesBlock192 key;
- Aes192KeySchedule key_schedule, inverted_schedule;
+ for (--argc, ++argv; argc > -1; --argc, ++argv)
+ {
+ AesBlock128 plain, cipher, iv;
+ AesBlock192 key;
+ Aes192KeySchedule key_schedule, inverted_schedule;
- if (argc < 3)
- exit_with_usage(argv[0]);
+ if (argc < 2)
+ exit_with_usage();
- if (parse_aes_block192(&key, argv[1]) != 0)
- {
- fprintf(stderr, "Invalid 192-bit AES block '%s'\n", argv[1]);
- exit_with_usage(argv[0]);
- }
+ if (parse_aes_block192(&key, *argv) != 0)
+ {
+ fprintf(stderr, "Invalid 192-bit AES block '%s'\n", *argv);
+ exit_with_usage();
+ }
- if (parse_aes_block128(&iv, argv[2]) != 0)
- {
- fprintf(stderr, "Invalid 128-bit AES block '%s'\n", argv[2]);
- exit_with_usage(argv[0]);
- }
+ if (parse_aes_block128(&iv, argv[1]) != 0)
+ {
+ fprintf(stderr, "Invalid 128-bit AES block '%s'\n", argv[1]);
+ exit_with_usage();
+ }
- aes192_expand_key_schedule(&key, &key_schedule);
- aes192_invert_key_schedule(&key_schedule, &inverted_schedule);
+ aes192_expand_key_schedule(&key, &key_schedule);
+ aes192_invert_key_schedule(&key_schedule, &inverted_schedule);
- for (int i = 3; i < argc; ++i)
- {
- if (parse_aes_block128(&cipher, argv[i]) != 0)
+ for (argc -= 2, argv += 2; argc > 0; --argc, ++argv)
{
- fprintf(stderr, "Invalid 128-bit AES block '%s'\n", argv[i]);
- continue;
+ if (strcmp("--", *argv) == 0)
+ break;
+
+ if (parse_aes_block128(&cipher, *argv) != 0)
+ {
+ fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv);
+ continue;
+ }
+ plain = aes192cbc_decrypt(cipher, &inverted_schedule, iv, &iv);
+ print_aes_block128(&plain);
}
- plain = aes192cbc_decrypt(cipher, &inverted_schedule, iv, &iv);
- print_aes_block128(&plain);
}
return 0;