diff options
Diffstat (limited to 'examples/aes256ecb.c')
-rw-r--r-- | examples/aes256ecb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/aes256ecb.c b/examples/aes256ecb.c index 31d05d7..18e9e88 100644 --- a/examples/aes256ecb.c +++ b/examples/aes256ecb.c @@ -35,7 +35,7 @@ int main() cipher = aes256ecb_encrypt(plain, &key_schedule); 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); aes256_invert_key_schedule(&key_schedule, &inverted_schedule); |