aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/aes128ctr_example.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--examples/aes128ctr_example.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/aes128ctr_example.c b/examples/aes128ctr_example.c
index b0d38ff..46251e8 100644
--- a/examples/aes128ctr_example.c
+++ b/examples/aes128ctr_example.c
@@ -12,7 +12,7 @@
int main()
{
- __declspec(align(16)) AesBlock128 plain, key, cypher, decrypted, iv;
+ __declspec(align(16)) AesBlock128 plain, key, cipher, decrypted, iv;
__declspec(align(16)) Aes128KeySchedule key_schedule;
plain = make_aes_block128(0xffeeddcc, 0xbbaa9988, 0x77665544, 0x33221100);
@@ -37,12 +37,12 @@ int main()
for (int i = 0; i < 11; ++i)
printf("\t[%d]: %s\n", i, format_aes_block128(&key_schedule.keys[i]).str);
- cypher = aes128ctr_encrypt(plain, &key_schedule, iv, 0);
+ cipher = aes128ctr_encrypt(plain, &key_schedule, iv, 0);
printf("\n");
- printf("Cypher: %s\n", format_aes_block128(&cypher).str);
- print_aes_block128_fips_matrix_style(&cypher);
+ printf("Cypher: %s\n", format_aes_block128(&cipher).str);
+ print_aes_block128_fips_matrix_style(&cipher);
- decrypted = aes128ctr_decrypt(cypher, &key_schedule, iv, 0);
+ decrypted = aes128ctr_decrypt(cipher, &key_schedule, iv, 0);
printf("\n");
printf("Decrypted: %s\n", format_aes_block128(&decrypted).str);
print_aes_block128_fips_matrix_style(&decrypted);