aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/decrypt_block_aes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/decrypt_block_aes.cpp')
-rw-r--r--test/decrypt_block_aes.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/decrypt_block_aes.cpp b/test/decrypt_block_aes.cpp
index acc9c6b..6cb9ce7 100644
--- a/test/decrypt_block_aes.cpp
+++ b/test/decrypt_block_aes.cpp
@@ -34,10 +34,10 @@ int main(int argc, char** argv)
if (argc < 2)
exit_with_usage();
- AesNI_AlgorithmParams algorithm_params;
+ AesNI_BoxAlgorithmParams algorithm_params;
aesni::from_string(algorithm_params.aes128_key, argv[0]);
- AesNI_State iv;
+ AesNI_BoxBlock iv;
aesni::from_string(iv.aes_block, argv[1]);
AesNI_Box box;
@@ -54,10 +54,10 @@ int main(int argc, char** argv)
if (std::strcmp("--", argv[0]) == 0)
break;
- AesNI_State ciphertext;
+ AesNI_BoxBlock ciphertext;
aesni::from_string(ciphertext.aes_block, argv[0]);
- AesNI_State plaintext;
+ AesNI_BoxBlock plaintext;
aesni_box_decrypt(
&box,
&ciphertext,