aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/aesni/api.h
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-05-30 00:38:19 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-05-30 00:38:19 +0300
commitb08c0e5b32c625215bee0ae96a023733d34e9357 (patch)
tree8f809b7f483ba11d2e4e2a235f3e7c9bc9b78ccb /include/aesni/api.h
parentmerge aes256{ecb,cbc}.asm (diff)
downloadaes-tools-b08c0e5b32c625215bee0ae96a023733d34e9357.tar.gz
aes-tools-b08c0e5b32c625215bee0ae96a023733d34e9357.zip
support AES-{128,192}-cbc
Diffstat (limited to '')
-rw-r--r--include/aesni/api.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/aesni/api.h b/include/aesni/api.h
index 64d169c..d64b225 100644
--- a/include/aesni/api.h
+++ b/include/aesni/api.h
@@ -25,6 +25,22 @@ static __inline AesBlock128 __fastcall aes128ecb_decrypt(
return raw_aes128ecb_decrypt(cypher, key);
}
+static __inline AesBlock128 __fastcall aes128cbc_encrypt(
+ AesBlock128 plain,
+ AesBlock128 key,
+ AesBlock128* initialization_vector)
+{
+ return raw_aes128cbc_encrypt(plain, key, initialization_vector);
+}
+
+static __inline AesBlock128 __fastcall aes128cbc_decrypt(
+ AesBlock128 cypher,
+ AesBlock128 key,
+ AesBlock128* initialization_vector)
+{
+ return raw_aes128cbc_decrypt(cypher, key, initialization_vector);
+}
+
static __inline AesBlock128 __fastcall aes192ecb_encrypt(
AesBlock128 plain,
AesBlock192* key)
@@ -39,6 +55,22 @@ static __inline AesBlock128 __fastcall aes192ecb_decrypt(
return raw_aes192ecb_decrypt(cypher, key->lo, key->hi);
}
+static __inline AesBlock128 __fastcall aes192cbc_encrypt(
+ AesBlock128 plain,
+ AesBlock192* key,
+ AesBlock128* initialization_vector)
+{
+ return raw_aes192cbc_encrypt(plain, key->lo, key->hi, initialization_vector);
+}
+
+static __inline AesBlock128 __fastcall aes192cbc_decrypt(
+ AesBlock128 cypher,
+ AesBlock192* key,
+ AesBlock128* initialization_vector)
+{
+ return raw_aes192cbc_decrypt(cypher, key->lo, key->hi, initialization_vector);
+}
+
static __inline AesBlock128 __fastcall aes256ecb_encrypt(
AesBlock128 plain,
AesBlock256* key)