diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-04 08:39:24 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-04 08:39:24 +0300 |
commit | 43a53392c51af91a41bb01a31bd20a772831949c (patch) | |
tree | 2778ba6cce620f7de4a1d043e6beae215fd2f886 /examples/aes192ofb.c | |
parent | test: add README (diff) | |
download | aes-tools-43a53392c51af91a41bb01a31bd20a772831949c.tar.gz aes-tools-43a53392c51af91a41bb01a31bd20a772831949c.zip |
grammar tweaks
Diffstat (limited to 'examples/aes192ofb.c')
-rw-r--r-- | examples/aes192ofb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/aes192ofb.c b/examples/aes192ofb.c index 1e561cb..b95f45e 100644 --- a/examples/aes192ofb.c +++ b/examples/aes192ofb.c @@ -40,7 +40,7 @@ int main() cipher = aes192ofb_encrypt(plain, &key_schedule, iv, &next_iv); printf("\n"); - printf("Cypher: %s\n", format_aes_block128(&cipher).str); + printf("Cipher: %s\n", format_aes_block128(&cipher).str); print_aes_block128_fips_matrix_style(&cipher); printf("\n"); |