aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/aes192ecb.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--examples/aes192ecb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/aes192ecb.c b/examples/aes192ecb.c
index 5aae0bc..6d51fb8 100644
--- a/examples/aes192ecb.c
+++ b/examples/aes192ecb.c
@@ -35,7 +35,7 @@ int main()
cipher = aes192ecb_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);
aes192_invert_key_schedule(&key_schedule, &inverted_schedule);