aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/aesni/box_data.h
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-17 23:25:52 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-17 23:25:52 +0300
commit44d58e0a10c7dfdb33899fa98c0eea790e0b90ce (patch)
tree646541b156ffdd88bbaa4f1fa860aed465dfce60 /include/aesni/box_data.h
parentrefactoring (diff)
downloadaes-tools-44d58e0a10c7dfdb33899fa98c0eea790e0b90ce.tar.gz
aes-tools-44d58e0a10c7dfdb33899fa98c0eea790e0b90ce.zip
factoring out AES-specific stuff
Diffstat (limited to 'include/aesni/box_data.h')
-rw-r--r--include/aesni/box_data.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/aesni/box_data.h b/include/aesni/box_data.h
index 160cf34..732f714 100644
--- a/include/aesni/box_data.h
+++ b/include/aesni/box_data.h
@@ -17,9 +17,9 @@ extern "C"
typedef union
{
- AesNI_Block128 aes128_key;
- AesNI_Block192 aes192_key;
- AesNI_Block256 aes256_key;
+ AesNI_Aes128_Key aes128_key;
+ AesNI_Aes192_Key aes192_key;
+ AesNI_Aes256_Key aes256_key;
}
AesNI_BoxAlgorithmParams;
@@ -59,7 +59,7 @@ AesNI_BoxDecryptionParams;
typedef union
{
- AesNI_Block128 aes_block;
+ AesNI_Aes_Block aes_block;
}
AesNI_BoxBlock;