aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--utils/CMakeLists.txt12
-rw-r--r--utils/block_cmd_parser.hpp2
-rw-r--r--utils/block_dumper.hpp2
-rw-r--r--utils/data_parsers.hpp2
-rw-r--r--utils/decrypt_block.cpp2
-rw-r--r--utils/decrypt_bmp.cpp2
-rw-r--r--utils/decrypt_file.cpp2
-rw-r--r--utils/encrypt_block.cpp2
-rw-r--r--utils/encrypt_bmp.cpp2
-rw-r--r--utils/encrypt_file.cpp2
-rw-r--r--utils/file_cmd_parser.hpp2
11 files changed, 16 insertions, 16 deletions
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
index 0d57e27..6a69af0 100644
--- a/utils/CMakeLists.txt
+++ b/utils/CMakeLists.txt
@@ -2,30 +2,30 @@ find_package(Boost REQUIRED COMPONENTS filesystem program_options system)
add_executable(util_encrypt_block encrypt_block.cpp block_cmd_parser.hpp block_dumper.hpp block_input.hpp data_parsers.hpp)
target_include_directories(util_encrypt_block PRIVATE ${Boost_INCLUDE_DIRS})
-target_link_libraries(util_encrypt_block libaesnixx ${Boost_LIBRARIES})
+target_link_libraries(util_encrypt_block libaesxx ${Boost_LIBRARIES})
set_target_properties(util_encrypt_block PROPERTIES OUTPUT_NAME encrypt_block)
add_executable(util_decrypt_block decrypt_block.cpp block_cmd_parser.hpp block_dumper.hpp block_input.hpp data_parsers.hpp)
target_include_directories(util_decrypt_block PRIVATE ${Boost_INCLUDE_DIRS})
-target_link_libraries(util_decrypt_block libaesnixx ${Boost_LIBRARIES})
+target_link_libraries(util_decrypt_block libaesxx ${Boost_LIBRARIES})
set_target_properties(util_decrypt_block PROPERTIES OUTPUT_NAME decrypt_block)
add_executable(util_encrypt_file encrypt_file.cpp file_cmd_parser.hpp data_parsers.hpp)
target_include_directories(util_encrypt_file PRIVATE ${Boost_INCLUDE_DIRS})
-target_link_libraries(util_encrypt_file libaesnixx ${Boost_LIBRARIES})
+target_link_libraries(util_encrypt_file libaesxx ${Boost_LIBRARIES})
set_target_properties(util_encrypt_file PROPERTIES OUTPUT_NAME encrypt_file)
add_executable(util_decrypt_file decrypt_file.cpp file_cmd_parser.hpp data_parsers.hpp)
target_include_directories(util_decrypt_file PRIVATE ${Boost_INCLUDE_DIRS})
-target_link_libraries(util_decrypt_file libaesnixx ${Boost_LIBRARIES})
+target_link_libraries(util_decrypt_file libaesxx ${Boost_LIBRARIES})
set_target_properties(util_decrypt_file PROPERTIES OUTPUT_NAME decrypt_file)
add_executable(util_encrypt_bmp encrypt_bmp.cpp file_cmd_parser.hpp data_parsers.hpp)
target_include_directories(util_encrypt_bmp PRIVATE ${Boost_INCLUDE_DIRS})
-target_link_libraries(util_encrypt_bmp libaesnixx ${Boost_LIBRARIES})
+target_link_libraries(util_encrypt_bmp libaesxx ${Boost_LIBRARIES})
set_target_properties(util_encrypt_bmp PROPERTIES OUTPUT_NAME encrypt_bmp)
add_executable(util_decrypt_bmp decrypt_bmp.cpp file_cmd_parser.hpp data_parsers.hpp)
target_include_directories(util_decrypt_bmp PRIVATE ${Boost_INCLUDE_DIRS})
-target_link_libraries(util_decrypt_bmp libaesnixx ${Boost_LIBRARIES})
+target_link_libraries(util_decrypt_bmp libaesxx ${Boost_LIBRARIES})
set_target_properties(util_decrypt_bmp PROPERTIES OUTPUT_NAME decrypt_bmp)
diff --git a/utils/block_cmd_parser.hpp b/utils/block_cmd_parser.hpp
index 62b0f36..db6da84 100644
--- a/utils/block_cmd_parser.hpp
+++ b/utils/block_cmd_parser.hpp
@@ -11,7 +11,7 @@
#include "block_input.hpp"
#include "data_parsers.hpp"
-#include <aesnixx/all.hpp>
+#include <aesxx/all.hpp>
#include <boost/filesystem.hpp>
#include <boost/program_options.hpp>
diff --git a/utils/block_dumper.hpp b/utils/block_dumper.hpp
index a473cd1..f41018d 100644
--- a/utils/block_dumper.hpp
+++ b/utils/block_dumper.hpp
@@ -8,7 +8,7 @@
#pragma once
-#include <aesnixx/all.hpp>
+#include <aesxx/all.hpp>
#include <cstdlib>
diff --git a/utils/data_parsers.hpp b/utils/data_parsers.hpp
index 333962e..d081659 100644
--- a/utils/data_parsers.hpp
+++ b/utils/data_parsers.hpp
@@ -8,7 +8,7 @@
#pragma once
-#include <aesnixx/all.hpp>
+#include <aesxx/all.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/program_options.hpp>
diff --git a/utils/decrypt_block.cpp b/utils/decrypt_block.cpp
index 456ef6c..7369052 100644
--- a/utils/decrypt_block.cpp
+++ b/utils/decrypt_block.cpp
@@ -10,7 +10,7 @@
#include "block_dumper.hpp"
#include "block_input.hpp"
-#include <aesnixx/all.hpp>
+#include <aesxx/all.hpp>
#include <boost/program_options.hpp>
diff --git a/utils/decrypt_bmp.cpp b/utils/decrypt_bmp.cpp
index dac042a..c1f36bf 100644
--- a/utils/decrypt_bmp.cpp
+++ b/utils/decrypt_bmp.cpp
@@ -8,7 +8,7 @@
#include "file_cmd_parser.hpp"
-#include <aesnixx/all.hpp>
+#include <aesxx/all.hpp>
#include <boost/program_options.hpp>
diff --git a/utils/decrypt_file.cpp b/utils/decrypt_file.cpp
index dd95928..ad7e9d0 100644
--- a/utils/decrypt_file.cpp
+++ b/utils/decrypt_file.cpp
@@ -8,7 +8,7 @@
#include "file_cmd_parser.hpp"
-#include <aesnixx/all.hpp>
+#include <aesxx/all.hpp>
#include <boost/program_options.hpp>
diff --git a/utils/encrypt_block.cpp b/utils/encrypt_block.cpp
index 98fdec6..34b6d84 100644
--- a/utils/encrypt_block.cpp
+++ b/utils/encrypt_block.cpp
@@ -10,7 +10,7 @@
#include "block_dumper.hpp"
#include "block_input.hpp"
-#include <aesnixx/all.hpp>
+#include <aesxx/all.hpp>
#include <boost/program_options.hpp>
diff --git a/utils/encrypt_bmp.cpp b/utils/encrypt_bmp.cpp
index 2dc3ea5..ea498cb 100644
--- a/utils/encrypt_bmp.cpp
+++ b/utils/encrypt_bmp.cpp
@@ -8,7 +8,7 @@
#include "file_cmd_parser.hpp"
-#include <aesnixx/all.hpp>
+#include <aesxx/all.hpp>
#include <boost/program_options.hpp>
diff --git a/utils/encrypt_file.cpp b/utils/encrypt_file.cpp
index bde7d83..3ae8744 100644
--- a/utils/encrypt_file.cpp
+++ b/utils/encrypt_file.cpp
@@ -8,7 +8,7 @@
#include "file_cmd_parser.hpp"
-#include <aesnixx/all.hpp>
+#include <aesxx/all.hpp>
#include <boost/program_options.hpp>
diff --git a/utils/file_cmd_parser.hpp b/utils/file_cmd_parser.hpp
index bc641ed..c8061fa 100644
--- a/utils/file_cmd_parser.hpp
+++ b/utils/file_cmd_parser.hpp
@@ -10,7 +10,7 @@
#include "data_parsers.hpp"
-#include <aesnixx/all.hpp>
+#include <aesxx/all.hpp>
#include <boost/filesystem.hpp>
#include <boost/program_options.hpp>