diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-10 03:06:24 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-10 03:06:24 +0300 |
commit | 82cef11d443c71c7d5ebc92f144c2b7ceb4e1cb2 (patch) | |
tree | 70eed008b868b440b915f1e02d8d8264865fa2e6 /utils/CMakeLists.txt | |
parent | add KAT vectors from the CAVP (diff) | |
download | aes-tools-82cef11d443c71c7d5ebc92f144c2b7ceb4e1cb2.tar.gz aes-tools-82cef11d443c71c7d5ebc92f144c2b7ceb4e1cb2.zip |
add file encryption utils for AES-128-ECB
Diffstat (limited to '')
-rw-r--r-- | utils/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt new file mode 100644 index 0000000..f6ca7d1 --- /dev/null +++ b/utils/CMakeLists.txt @@ -0,0 +1,8 @@ +macro(util prefix) + add_executable(util_${prefix} ${prefix}.cpp) + target_link_libraries(util_${prefix} libaesni) + set_target_properties(util_${prefix} PROPERTIES OUTPUT_NAME ${prefix}) +endmacro() + +util(aes128ecb_encrypt_file) +util(aes128ecb_decrypt_file) |