aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/aesni/box.h
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-19 05:36:34 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-19 05:36:34 +0300
commita386820259790f08073bc84bb868c9907558bb84 (patch)
treebc46ca07ef0d0a3671f8d0ecc1a45295881ec289 /include/aesni/box.h
parenterror message update (diff)
downloadaes-tools-a386820259790f08073bc84bb868c9907558bb84.tar.gz
aes-tools-a386820259790f08073bc84bb868c9907558bb84.zip
refactoring
Diffstat (limited to '')
-rw-r--r--include/aesni/box.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/aesni/box.h b/include/aesni/box.h
index bc270ee..3dfbc9e 100644
--- a/include/aesni/box.h
+++ b/include/aesni/box.h
@@ -24,13 +24,13 @@ AesNI_StatusCode aesni_box_init(
const AesNI_BoxBlock* iv,
AesNI_ErrorDetails* err_details);
-AesNI_StatusCode aesni_box_encrypt(
+AesNI_StatusCode aesni_box_encrypt_block(
AesNI_Box* box,
const AesNI_BoxBlock* plaintext,
AesNI_BoxBlock* ciphertext,
AesNI_ErrorDetails* err_details);
-AesNI_StatusCode aesni_box_decrypt(
+AesNI_StatusCode aesni_box_decrypt_block(
AesNI_Box* box,
const AesNI_BoxBlock* ciphertext,
AesNI_BoxBlock* plaintext,