aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/aes192ofb.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/aes192ofb.c')
-rw-r--r--examples/aes192ofb.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/aes192ofb.c b/examples/aes192ofb.c
index b95f45e..aed3c0c 100644
--- a/examples/aes192ofb.c
+++ b/examples/aes192ofb.c
@@ -21,15 +21,15 @@ int main()
iv = make_aes_block128(0xfedcba98, 0x76543210, 0xfedcba98, 0x76543210);
printf("Plain: %s\n", format_aes_block128(&plain).str);
- print_aes_block128_fips_matrix_style(&plain);
+ print_aes_block128_as_matrix(&plain);
printf("\n");
printf("Key: %s\n", format_aes_block192(&key).str);
- print_aes_block192_fips_matrix_style(&key);
+ print_aes_block192_as_matrix(&key);
printf("\n");
printf("Initialization vector: %s\n", format_aes_block128(&iv).str);
- print_aes_block128_fips_matrix_style(&iv);
+ print_aes_block128_as_matrix(&iv);
aes192_expand_key_schedule(&key, &key_schedule);
@@ -41,20 +41,20 @@ int main()
cipher = aes192ofb_encrypt(plain, &key_schedule, iv, &next_iv);
printf("\n");
printf("Cipher: %s\n", format_aes_block128(&cipher).str);
- print_aes_block128_fips_matrix_style(&cipher);
+ print_aes_block128_as_matrix(&cipher);
printf("\n");
printf("Next initialization vector: %s\n", format_aes_block128(&next_iv).str);
- print_aes_block128_fips_matrix_style(&next_iv);
+ print_aes_block128_as_matrix(&next_iv);
decrypted = aes192ofb_decrypt(cipher, &key_schedule, iv, &next_iv);
printf("\n");
printf("Decrypted: %s\n", format_aes_block128(&decrypted).str);
- print_aes_block128_fips_matrix_style(&decrypted);
+ print_aes_block128_as_matrix(&decrypted);
printf("\n");
printf("Next initialization vector: %s\n", format_aes_block128(&next_iv).str);
- print_aes_block128_fips_matrix_style(&next_iv);
+ print_aes_block128_as_matrix(&next_iv);
return 0;
}