diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-08-03 21:32:10 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-08-03 21:32:10 +0300 |
commit | dc8303f0595275db7f38426d850f7615ae4ec1f3 (patch) | |
tree | baa431bb883198c1eff68ce03d9bfa6c3cc664dd /test/toolkit.py | |
parent | rename the utilities (diff) | |
download | aes-tools-dc8303f0595275db7f38426d850f7615ae4ec1f3.tar.gz aes-tools-dc8303f0595275db7f38426d850f7615ae4ec1f3.zip |
test/toolkit.py: fix utility names
Diffstat (limited to '')
-rw-r--r-- | test/toolkit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/toolkit.py b/test/toolkit.py index 39bc350..1cf26b6 100644 --- a/test/toolkit.py +++ b/test/toolkit.py @@ -79,8 +79,8 @@ class Tools: self._use_boxes = use_boxes self._logger = logging.getLogger(__name__) - _ENCRYPT_BLOCK = 'aes_encrypt_block.exe' - _DECRYPT_BLOCK = 'aes_decrypt_block.exe' + _ENCRYPT_BLOCK = 'encrypt_block.exe' + _DECRYPT_BLOCK = 'decrypt_block.exe' def run(self, tool_path, algo, mode, args): cmd_list = ['sde', '--', tool_path] if self._use_sde else [tool_path] |