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 /include | |
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-- | include/aesni/data.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/aesni/data.h b/include/aesni/data.h index 8819214..e0e4563 100644 --- a/include/aesni/data.h +++ b/include/aesni/data.h @@ -51,3 +51,5 @@ void print_aes_block192_fips_style(AesBlock192*); void print_aes_block256_fips_style(AesBlock256*); void print_aes_block128_fips_matrix_style(AesBlock128*); +void print_aes_block192_fips_matrix_style(AesBlock192*); +void print_aes_block256_fips_matrix_style(AesBlock256*); |