/** * \file * \author Egor Tensin * \date 2015 * \copyright This file is licensed under the terms of the MIT License. * See LICENSE.txt for details. */ #include #include #include #include static void exit_with_usage() { puts("Usage: aesni_decrypt_block_ecb128.exe KEY0 [CIPHER0...] [-- KEY1 [CIPHER1...]...]"); exit(EXIT_FAILURE); } int main(int argc, char** argv) { for (--argc, ++argv; argc > -1; --argc, ++argv) { AesNI_Block128 plain, key, cipher; AesNI_KeySchedule128 key_schedule, inverted_schedule; if (argc < 1) exit_with_usage(); if (aesni_parse_block128(&key, *argv) != 0) { fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv); exit_with_usage(); } aesni_expand_key_schedule128(key, &key_schedule); aesni_invert_key_schedule128(&key_schedule, &inverted_schedule); for (--argc, ++argv; argc > 0; --argc, ++argv) { if (strcmp("--", *argv) == 0) break; if (aesni_parse_block128(&cipher, *argv) != 0) { fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv); continue; } plain = aesni_decrypt_block_ecb128(cipher, &inverted_schedule); aesni_print_block128(&plain); } } return 0; }