From 32f8a474fdfe5ed1a5a9dfc34fa2dd41e1a6d9c1 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 1 Sep 2015 02:53:39 +0300 Subject: refactoring --- utils/decrypt_block.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'utils/decrypt_block.cpp') diff --git a/utils/decrypt_block.cpp b/utils/decrypt_block.cpp index 6159eb5..7c8e773 100644 --- a/utils/decrypt_block.cpp +++ b/utils/decrypt_block.cpp @@ -131,7 +131,7 @@ namespace template bool decrypt_using_boxes_with_algorithm( - const AesNI_BoxAlgorithmParams& algorithm_params, + const AesNI_BoxKey& box_key, aesni::Mode mode, const std::string& key, std::deque ciphertexts) @@ -153,7 +153,7 @@ namespace aesni_box_init( &box, algorithm, - &algorithm_params, + &box_key, mode, iv_ptr, aesni::ErrorDetailsThrowsInDestructor()); @@ -183,27 +183,27 @@ namespace const std::string& key, std::deque ciphertexts) { - AesNI_BoxAlgorithmParams algorithm_params; + AesNI_BoxKey box_key; switch (algorithm) { case AESNI_AES128: aesni::from_string( - algorithm_params.aes128_key, key); + box_key.aes128_key, key); return decrypt_using_boxes_with_algorithm( - algorithm_params, mode, key, ciphertexts); + box_key, mode, key, ciphertexts); case AESNI_AES192: aesni::from_string( - algorithm_params.aes192_key, key); + box_key.aes192_key, key); return decrypt_using_boxes_with_algorithm( - algorithm_params, mode, key, ciphertexts); + box_key, mode, key, ciphertexts); case AESNI_AES256: aesni::from_string( - algorithm_params.aes256_key, key); + box_key.aes256_key, key); return decrypt_using_boxes_with_algorithm( - algorithm_params, mode, key, ciphertexts); + box_key, mode, key, ciphertexts); default: return false; -- cgit v1.2.3