From 91923133903515c98973543c0e17705537449c22 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 3 Jun 2015 22:46:18 +0300 Subject: init vectors are calculated by API functions --- examples/aes192cfb_example.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'examples/aes192cfb_example.c') diff --git a/examples/aes192cfb_example.c b/examples/aes192cfb_example.c index fe6340b..d3ac8bc 100644 --- a/examples/aes192cfb_example.c +++ b/examples/aes192cfb_example.c @@ -12,7 +12,7 @@ int main() { - __declspec(align(16)) AesBlock128 plain, cypher, decrypted, iv; + __declspec(align(16)) AesBlock128 plain, cypher, decrypted, iv, next_iv; __declspec(align(16)) AesBlock192 key; __declspec(align(16)) Aes192KeySchedule key_schedule; @@ -38,15 +38,23 @@ int main() for (int i = 0; i < 13; ++i) printf("\t[%d]: %s\n", i, format_aes_block128(&key_schedule.keys[i]).str); - cypher = aes192cfb_encrypt(plain, &key_schedule, iv); + cypher = aes192cfb_encrypt(plain, &key_schedule, iv, &next_iv); printf("\n"); printf("Cypher: %s\n", format_aes_block128(&cypher).str); print_aes_block128_fips_matrix_style(&cypher); - decrypted = aes192cfb_decrypt(cypher, &key_schedule, iv); + printf("\n"); + printf("Next initialization vector: %s\n", format_aes_block128(&next_iv).str); + print_aes_block128_fips_matrix_style(&next_iv); + + decrypted = aes192cfb_decrypt(cypher, &key_schedule, iv, &next_iv); printf("\n"); printf("Decrypted: %s\n", format_aes_block128(&decrypted).str); print_aes_block128_fips_matrix_style(&decrypted); + printf("\n"); + printf("Next initialization vector: %s\n", format_aes_block128(&next_iv).str); + print_aes_block128_fips_matrix_style(&next_iv); + return 0; } -- cgit v1.2.3