diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-24 17:47:15 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-24 17:47:15 +0300 |
commit | bec414fe59dcc319183aab9ca9cbd70fbb4242df (patch) | |
tree | 89632780cc459350723b193aac2689b924878542 /examples/aes256cbc_example.c | |
parent | add higher-level encrypt/decrypt functions (diff) | |
download | aes-tools-bec414fe59dcc319183aab9ca9cbd70fbb4242df.tar.gz aes-tools-bec414fe59dcc319183aab9ca9cbd70fbb4242df.zip |
add FIPS-style printing to AES-192/256 blocks
Diffstat (limited to '')
-rw-r--r-- | examples/aes256cbc_example.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/aes256cbc_example.c b/examples/aes256cbc_example.c index 4ce50d9..275b947 100644 --- a/examples/aes256cbc_example.c +++ b/examples/aes256cbc_example.c @@ -26,6 +26,7 @@ int main() printf("\n"); printf("Key: %s\n", format_aes_block256(&key).str); printf(" %s\n", format_aes_block256_fips_style(&key).str); + print_aes_block256_fips_matrix_style(&key); printf("\n"); printf("Initialization vector: %s\n", format_aes_block128(&iv).str); |