aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/aes256ofb_example.c
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-04 03:25:57 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-04 03:25:57 +0300
commitf89d5f29a90d6c71068a759e5891e925131a5e65 (patch)
tree0eef5f382f350542d9fa5a4288a285422ae61296 /examples/aes256ofb_example.c
parentadd CTR mode (diff)
downloadaes-tools-f89d5f29a90d6c71068a759e5891e925131a5e65.tar.gz
aes-tools-f89d5f29a90d6c71068a759e5891e925131a5e65.zip
grammar tweaks
Diffstat (limited to '')
-rw-r--r--examples/aes256ofb_example.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/aes256ofb_example.c b/examples/aes256ofb_example.c
index 749103e..4b2248a 100644
--- a/examples/aes256ofb_example.c
+++ b/examples/aes256ofb_example.c
@@ -12,7 +12,7 @@
int main()
{
- __declspec(align(16)) AesBlock128 plain, cypher, decrypted, iv, next_iv;
+ __declspec(align(16)) AesBlock128 plain, cipher, decrypted, iv, next_iv;
__declspec(align(16)) AesBlock256 key;
__declspec(align(16)) Aes256KeySchedule key_schedule;
@@ -38,16 +38,16 @@ int main()
for (int i = 0; i < 15; ++i)
printf("\t[%d]: %s\n", i, format_aes_block128(&key_schedule.keys[i]).str);
- cypher = aes256ofb_encrypt(plain, &key_schedule, iv, &next_iv);
+ cipher = aes256ofb_encrypt(plain, &key_schedule, iv, &next_iv);
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);
printf("\n");
printf("Next initialization vector: %s\n", format_aes_block128(&next_iv).str);
print_aes_block128_fips_matrix_style(&next_iv);
- decrypted = aes256ofb_decrypt(cypher, &key_schedule, iv, &next_iv);
+ decrypted = aes256ofb_decrypt(cipher, &key_schedule, iv, &next_iv);
printf("\n");
printf("Decrypted: %s\n", format_aes_block128(&decrypted).str);
print_aes_block128_fips_matrix_style(&decrypted);