aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/aes128ofb.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--examples/aes128ofb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/aes128ofb.c b/examples/aes128ofb.c
index cef4df5..12ef468 100644
--- a/examples/aes128ofb.c
+++ b/examples/aes128ofb.c
@@ -37,7 +37,7 @@ int main()
for (int i = 0; i < 11; ++i)
printf("\t[%d]: %s\n", i, format_aes_block128(&key_schedule.keys[i]).str);
- cipher = aes128ofb_encrypt(plain, &key_schedule, iv, &next_iv);
+ cipher = aes128ofb_encrypt_block(plain, &key_schedule, iv, &next_iv);
printf("\n");
printf("Cipher: %s\n", format_aes_block128(&cipher).str);
print_aes_block128_as_matrix(&cipher);
@@ -46,7 +46,7 @@ int main()
printf("Next initialization vector: %s\n", format_aes_block128(&next_iv).str);
print_aes_block128_as_matrix(&next_iv);
- decrypted = aes128ofb_decrypt(cipher, &key_schedule, iv, &next_iv);
+ decrypted = aes128ofb_decrypt_block(cipher, &key_schedule, iv, &next_iv);
printf("\n");
printf("Decrypted: %s\n", format_aes_block128(&decrypted).str);
print_aes_block128_as_matrix(&decrypted);