aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/file/cxx
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-25 01:18:24 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-25 01:18:24 +0300
commitf752dfe56b67f2729df0c54c83612ba36f8133bc (patch)
tree9d392157a1d9ae0d112260c5dedc7ec535d38291 /utils/file/cxx
parentcxx: implement more stuff (diff)
downloadaes-tools-f752dfe56b67f2729df0c54c83612ba36f8133bc.tar.gz
aes-tools-f752dfe56b67f2729df0c54c83612ba36f8133bc.zip
remove specialized buffer encryption functions
Diffstat (limited to '')
-rw-r--r--utils/file/README.md (renamed from utils/file/cxx/README.md)0
-rw-r--r--utils/file/aes_common.hpp (renamed from utils/file/cxx/aes_common.hpp)0
-rw-r--r--utils/file/aes_decrypt_bmp.cpp (renamed from utils/file/cxx/aes_decrypt_bmp.cpp)0
-rw-r--r--utils/file/aes_decrypt_file.cpp (renamed from utils/file/cxx/aes_decrypt_file.cpp)0
-rw-r--r--utils/file/aes_encrypt_bmp.cpp (renamed from utils/file/cxx/aes_encrypt_bmp.cpp)0
-rw-r--r--utils/file/aes_encrypt_file.cpp (renamed from utils/file/cxx/aes_encrypt_file.cpp)0
-rw-r--r--utils/file/bmp/butterfly.bmp (renamed from utils/file/cxx/bmp/butterfly.bmp)bin503370 -> 503370 bytes
-rw-r--r--utils/file/bmp/cipherfly_cbc.bmp (renamed from utils/file/cxx/bmp/cipherfly_cbc.bmp)bin503382 -> 503382 bytes
-rw-r--r--utils/file/bmp/cipherfly_ecb.bmp (renamed from utils/file/cxx/bmp/cipherfly_ecb.bmp)bin503382 -> 503382 bytes
-rw-r--r--utils/file/cxx/CMakeLists.txt21
10 files changed, 0 insertions, 21 deletions
diff --git a/utils/file/cxx/README.md b/utils/file/README.md
index bf79cb2..bf79cb2 100644
--- a/utils/file/cxx/README.md
+++ b/utils/file/README.md
diff --git a/utils/file/cxx/aes_common.hpp b/utils/file/aes_common.hpp
index 28e16df..28e16df 100644
--- a/utils/file/cxx/aes_common.hpp
+++ b/utils/file/aes_common.hpp
diff --git a/utils/file/cxx/aes_decrypt_bmp.cpp b/utils/file/aes_decrypt_bmp.cpp
index 85dffe5..85dffe5 100644
--- a/utils/file/cxx/aes_decrypt_bmp.cpp
+++ b/utils/file/aes_decrypt_bmp.cpp
diff --git a/utils/file/cxx/aes_decrypt_file.cpp b/utils/file/aes_decrypt_file.cpp
index e2da979..e2da979 100644
--- a/utils/file/cxx/aes_decrypt_file.cpp
+++ b/utils/file/aes_decrypt_file.cpp
diff --git a/utils/file/cxx/aes_encrypt_bmp.cpp b/utils/file/aes_encrypt_bmp.cpp
index cf55b0b..cf55b0b 100644
--- a/utils/file/cxx/aes_encrypt_bmp.cpp
+++ b/utils/file/aes_encrypt_bmp.cpp
diff --git a/utils/file/cxx/aes_encrypt_file.cpp b/utils/file/aes_encrypt_file.cpp
index ff6753f..ff6753f 100644
--- a/utils/file/cxx/aes_encrypt_file.cpp
+++ b/utils/file/aes_encrypt_file.cpp
diff --git a/utils/file/cxx/bmp/butterfly.bmp b/utils/file/bmp/butterfly.bmp
index 105a55a..105a55a 100644
--- a/utils/file/cxx/bmp/butterfly.bmp
+++ b/utils/file/bmp/butterfly.bmp
Binary files differ
diff --git a/utils/file/cxx/bmp/cipherfly_cbc.bmp b/utils/file/bmp/cipherfly_cbc.bmp
index 664b557..664b557 100644
--- a/utils/file/cxx/bmp/cipherfly_cbc.bmp
+++ b/utils/file/bmp/cipherfly_cbc.bmp
Binary files differ
diff --git a/utils/file/cxx/bmp/cipherfly_ecb.bmp b/utils/file/bmp/cipherfly_ecb.bmp
index 78de9a8..78de9a8 100644
--- a/utils/file/cxx/bmp/cipherfly_ecb.bmp
+++ b/utils/file/bmp/cipherfly_ecb.bmp
Binary files differ
diff --git a/utils/file/cxx/CMakeLists.txt b/utils/file/cxx/CMakeLists.txt
deleted file mode 100644
index 75895a0..0000000
--- a/utils/file/cxx/CMakeLists.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-find_package(Boost REQUIRED COMPONENTS program_options)
-
-add_executable(util_aes_encrypt_file aes_encrypt_file.cpp aes_common.hpp)
-target_include_directories(util_aes_encrypt_file PRIVATE ${Boost_INCLUDE_DIRS})
-target_link_libraries(util_aes_encrypt_file libaesni libaesnixx ${Boost_LIBRARIES})
-set_target_properties(util_aes_encrypt_file PROPERTIES OUTPUT_NAME aes_encrypt_file)
-
-add_executable(util_aes_decrypt_file aes_decrypt_file.cpp aes_common.hpp)
-target_include_directories(util_aes_decrypt_file PRIVATE ${Boost_INCLUDE_DIRS})
-target_link_libraries(util_aes_decrypt_file libaesni libaesnixx ${Boost_LIBRARIES})
-set_target_properties(util_aes_decrypt_file PROPERTIES OUTPUT_NAME aes_decrypt_file)
-
-add_executable(util_aes_encrypt_bmp aes_encrypt_bmp.cpp aes_common.hpp)
-target_include_directories(util_aes_encrypt_bmp PRIVATE ${Boost_INCLUDE_DIRS})
-target_link_libraries(util_aes_encrypt_bmp libaesni libaesnixx ${Boost_LIBRARIES})
-set_target_properties(util_aes_encrypt_bmp PROPERTIES OUTPUT_NAME aes_encrypt_bmp)
-
-add_executable(util_aes_decrypt_bmp aes_decrypt_bmp.cpp aes_common.hpp)
-target_include_directories(util_aes_decrypt_bmp PRIVATE ${Boost_INCLUDE_DIRS})
-target_link_libraries(util_aes_decrypt_bmp libaesni libaesnixx ${Boost_LIBRARIES})
-set_target_properties(util_aes_decrypt_bmp PROPERTIES OUTPUT_NAME aes_decrypt_bmp)