diff options
Diffstat (limited to 'examples/aes128ecb.c')
-rw-r--r-- | examples/aes128ecb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/aes128ecb.c b/examples/aes128ecb.c index 1d8e7ae..a96f937 100644 --- a/examples/aes128ecb.c +++ b/examples/aes128ecb.c @@ -34,7 +34,7 @@ int main() cipher = aes128ecb_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); aes128_invert_key_schedule(&key_schedule, &inverted_schedule); |