diff options
Diffstat (limited to 'examples/aes256ctr.c')
-rw-r--r-- | examples/aes256ctr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/aes256ctr.c b/examples/aes256ctr.c index 647d668..3e06364 100644 --- a/examples/aes256ctr.c +++ b/examples/aes256ctr.c @@ -40,7 +40,7 @@ int main() cipher = aes256ctr_encrypt(plain, &key_schedule, iv, 0); 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); decrypted = aes256ctr_decrypt(cipher, &key_schedule, iv, 0); |