diff --git a/src/blockstore/implementations/compressing/compressors/Gzip.cpp b/src/blockstore/implementations/compressing/compressors/Gzip.cpp index 64f13e97..67b7f49a 100644 --- a/src/blockstore/implementations/compressing/compressors/Gzip.cpp +++ b/src/blockstore/implementations/compressing/compressors/Gzip.cpp @@ -1,6 +1,6 @@ #include "cpp-utils/crypto/cryptopp_byte.h" #include "Gzip.h" -#include +#include using cpputils::Data; diff --git a/src/cpp-utils/crypto/cryptopp_byte.h b/src/cpp-utils/crypto/cryptopp_byte.h index 363990e9..e00cf7cf 100644 --- a/src/cpp-utils/crypto/cryptopp_byte.h +++ b/src/cpp-utils/crypto/cryptopp_byte.h @@ -2,7 +2,7 @@ #ifndef _CPPUTILS_CRYPTO_CRYPTOPP_BYTE_H #define _CPPUTILS_CRYPTO_CRYPTOPP_BYTE_H -#include +#include // If we're running an older CryptoPP version, CryptoPP::byte isn't defined yet. // Define it. Refer to "byte" type in the global namespace (placed by CryptoPP). diff --git a/src/cpp-utils/crypto/hash/Hash.cpp b/src/cpp-utils/crypto/hash/Hash.cpp index e07d28da..696cdeaf 100644 --- a/src/cpp-utils/crypto/hash/Hash.cpp +++ b/src/cpp-utils/crypto/hash/Hash.cpp @@ -1,6 +1,6 @@ #include "Hash.h" #include -#include +#include using cpputils::Random; using CryptoPP::SHA512; diff --git a/src/cpp-utils/crypto/kdf/Scrypt.cpp b/src/cpp-utils/crypto/kdf/Scrypt.cpp index 517fbfbc..754db7de 100644 --- a/src/cpp-utils/crypto/kdf/Scrypt.cpp +++ b/src/cpp-utils/crypto/kdf/Scrypt.cpp @@ -1,5 +1,5 @@ #include "Scrypt.h" -#include +#include using std::string; diff --git a/src/cpp-utils/crypto/symmetric/CFB_Cipher.h b/src/cpp-utils/crypto/symmetric/CFB_Cipher.h index 971f1d7b..0554faa8 100644 --- a/src/cpp-utils/crypto/symmetric/CFB_Cipher.h +++ b/src/cpp-utils/crypto/symmetric/CFB_Cipher.h @@ -7,7 +7,7 @@ #include "../../data/Data.h" #include "../../random/Random.h" #include -#include +#include #include "Cipher.h" #include "EncryptionKey.h" diff --git a/src/cpp-utils/crypto/symmetric/GCM_Cipher.h b/src/cpp-utils/crypto/symmetric/GCM_Cipher.h index 2eb00ec2..4f932847 100644 --- a/src/cpp-utils/crypto/symmetric/GCM_Cipher.h +++ b/src/cpp-utils/crypto/symmetric/GCM_Cipher.h @@ -6,7 +6,7 @@ #include "../../data/FixedSizeData.h" #include "../../data/Data.h" #include "../../random/Random.h" -#include +#include #include "Cipher.h" #include "EncryptionKey.h" diff --git a/src/cpp-utils/crypto/symmetric/ciphers.h b/src/cpp-utils/crypto/symmetric/ciphers.h index 61a6a25a..7a8f8d45 100644 --- a/src/cpp-utils/crypto/symmetric/ciphers.h +++ b/src/cpp-utils/crypto/symmetric/ciphers.h @@ -2,11 +2,11 @@ #ifndef MESSMER_CPPUTILS_CRYPTO_SYMMETRIC_CIPHERS_H_ #define MESSMER_CPPUTILS_CRYPTO_SYMMETRIC_CIPHERS_H_ -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include "GCM_Cipher.h" #include "CFB_Cipher.h" diff --git a/src/cpp-utils/data/Data.cpp b/src/cpp-utils/data/Data.cpp index 7d466155..26461a98 100644 --- a/src/cpp-utils/data/Data.cpp +++ b/src/cpp-utils/data/Data.cpp @@ -1,6 +1,6 @@ #include "Data.h" #include -#include +#include #include using std::istream; diff --git a/src/cpp-utils/data/FixedSizeData.h b/src/cpp-utils/data/FixedSizeData.h index 800809cf..5c8c1a69 100644 --- a/src/cpp-utils/data/FixedSizeData.h +++ b/src/cpp-utils/data/FixedSizeData.h @@ -2,7 +2,7 @@ #ifndef MESSMER_CPPUTILS_DATA_FIXEDSIZEDATA_H_ #define MESSMER_CPPUTILS_DATA_FIXEDSIZEDATA_H_ -#include +#include #include #include #include "../assert/assert.h" diff --git a/src/cpp-utils/random/OSRandomGenerator.h b/src/cpp-utils/random/OSRandomGenerator.h index 8c8dc6f5..18a8002d 100644 --- a/src/cpp-utils/random/OSRandomGenerator.h +++ b/src/cpp-utils/random/OSRandomGenerator.h @@ -4,7 +4,7 @@ #include "cpp-utils/crypto/cryptopp_byte.h" #include "RandomGenerator.h" -#include +#include namespace cpputils { class OSRandomGenerator final : public RandomGenerator { diff --git a/src/cpp-utils/random/RandomGeneratorThread.h b/src/cpp-utils/random/RandomGeneratorThread.h index 103c00d7..593750ed 100644 --- a/src/cpp-utils/random/RandomGeneratorThread.h +++ b/src/cpp-utils/random/RandomGeneratorThread.h @@ -4,7 +4,7 @@ #include "../thread/LoopThread.h" #include "ThreadsafeRandomDataBuffer.h" -#include +#include namespace cpputils { //TODO Test diff --git a/src/cryfs/localstate/BasedirMetadata.cpp b/src/cryfs/localstate/BasedirMetadata.cpp index 5f432168..2b335fa2 100644 --- a/src/cryfs/localstate/BasedirMetadata.cpp +++ b/src/cryfs/localstate/BasedirMetadata.cpp @@ -1,7 +1,7 @@ #include "BasedirMetadata.h" #include #include -#include +#include #include #include "LocalStateDir.h" diff --git a/test/cryfs/config/CompatibilityTest.cpp b/test/cryfs/config/CompatibilityTest.cpp index 4768bd45..5c8575bb 100644 --- a/test/cryfs/config/CompatibilityTest.cpp +++ b/test/cryfs/config/CompatibilityTest.cpp @@ -3,7 +3,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/vendor/cryptopp/CMakeLists.txt b/vendor/cryptopp/CMakeLists.txt index 94b384ff..ebd0e88b 100644 --- a/vendor/cryptopp/CMakeLists.txt +++ b/vendor/cryptopp/CMakeLists.txt @@ -1,6 +1,7 @@ project(mycryptopp) add_library(cryptopp dummy.cpp) +# note: include directory is called vendor_cryptopp instead of cryptopp to avoid include clashes with system headers target_include_directories(cryptopp SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) find_package(OpenMP) @@ -17,7 +18,7 @@ set(BUILD_TESTING OFF) set(BUILD_DOCUMENTATION OFF) set(BUILD_SHARED OFF) set(BUILD_STATIC ON) -add_subdirectory(cryptopp EXCLUDE_FROM_ALL) +add_subdirectory(vendor_cryptopp EXCLUDE_FROM_ALL) target_link_libraries(cryptopp PRIVATE cryptopp-static) diff --git a/vendor/cryptopp/cryptopp/.appveyor.yml b/vendor/cryptopp/vendor_cryptopp/.appveyor.yml similarity index 100% rename from vendor/cryptopp/cryptopp/.appveyor.yml rename to vendor/cryptopp/vendor_cryptopp/.appveyor.yml diff --git a/vendor/cryptopp/cryptopp/.gitattributes b/vendor/cryptopp/vendor_cryptopp/.gitattributes similarity index 100% rename from vendor/cryptopp/cryptopp/.gitattributes rename to vendor/cryptopp/vendor_cryptopp/.gitattributes diff --git a/vendor/cryptopp/cryptopp/.github/issue_template.md b/vendor/cryptopp/vendor_cryptopp/.github/issue_template.md similarity index 100% rename from vendor/cryptopp/cryptopp/.github/issue_template.md rename to vendor/cryptopp/vendor_cryptopp/.github/issue_template.md diff --git a/vendor/cryptopp/cryptopp/.gitignore b/vendor/cryptopp/vendor_cryptopp/.gitignore similarity index 100% rename from vendor/cryptopp/cryptopp/.gitignore rename to vendor/cryptopp/vendor_cryptopp/.gitignore diff --git a/vendor/cryptopp/cryptopp/.travis.yml b/vendor/cryptopp/vendor_cryptopp/.travis.yml similarity index 100% rename from vendor/cryptopp/cryptopp/.travis.yml rename to vendor/cryptopp/vendor_cryptopp/.travis.yml diff --git a/vendor/cryptopp/cryptopp/3way.cpp b/vendor/cryptopp/vendor_cryptopp/3way.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/3way.cpp rename to vendor/cryptopp/vendor_cryptopp/3way.cpp diff --git a/vendor/cryptopp/cryptopp/3way.h b/vendor/cryptopp/vendor_cryptopp/3way.h similarity index 100% rename from vendor/cryptopp/cryptopp/3way.h rename to vendor/cryptopp/vendor_cryptopp/3way.h diff --git a/vendor/cryptopp/cryptopp/CMakeLists.txt b/vendor/cryptopp/vendor_cryptopp/CMakeLists.txt similarity index 100% rename from vendor/cryptopp/cryptopp/CMakeLists.txt rename to vendor/cryptopp/vendor_cryptopp/CMakeLists.txt diff --git a/vendor/cryptopp/cryptopp/Doxyfile b/vendor/cryptopp/vendor_cryptopp/Doxyfile similarity index 100% rename from vendor/cryptopp/cryptopp/Doxyfile rename to vendor/cryptopp/vendor_cryptopp/Doxyfile diff --git a/vendor/cryptopp/cryptopp/Filelist.txt b/vendor/cryptopp/vendor_cryptopp/Filelist.txt similarity index 100% rename from vendor/cryptopp/cryptopp/Filelist.txt rename to vendor/cryptopp/vendor_cryptopp/Filelist.txt diff --git a/vendor/cryptopp/cryptopp/GNUmakefile b/vendor/cryptopp/vendor_cryptopp/GNUmakefile similarity index 100% rename from vendor/cryptopp/cryptopp/GNUmakefile rename to vendor/cryptopp/vendor_cryptopp/GNUmakefile diff --git a/vendor/cryptopp/cryptopp/GNUmakefile-cross b/vendor/cryptopp/vendor_cryptopp/GNUmakefile-cross similarity index 100% rename from vendor/cryptopp/cryptopp/GNUmakefile-cross rename to vendor/cryptopp/vendor_cryptopp/GNUmakefile-cross diff --git a/vendor/cryptopp/cryptopp/History.txt b/vendor/cryptopp/vendor_cryptopp/History.txt similarity index 100% rename from vendor/cryptopp/cryptopp/History.txt rename to vendor/cryptopp/vendor_cryptopp/History.txt diff --git a/vendor/cryptopp/cryptopp/Install.txt b/vendor/cryptopp/vendor_cryptopp/Install.txt similarity index 100% rename from vendor/cryptopp/cryptopp/Install.txt rename to vendor/cryptopp/vendor_cryptopp/Install.txt diff --git a/vendor/cryptopp/cryptopp/License.txt b/vendor/cryptopp/vendor_cryptopp/License.txt similarity index 100% rename from vendor/cryptopp/cryptopp/License.txt rename to vendor/cryptopp/vendor_cryptopp/License.txt diff --git a/vendor/cryptopp/cryptopp/Readme.txt b/vendor/cryptopp/vendor_cryptopp/Readme.txt similarity index 100% rename from vendor/cryptopp/cryptopp/Readme.txt rename to vendor/cryptopp/vendor_cryptopp/Readme.txt diff --git a/vendor/cryptopp/cryptopp/TestData/3desval.dat b/vendor/cryptopp/vendor_cryptopp/TestData/3desval.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/3desval.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/3desval.dat diff --git a/vendor/cryptopp/cryptopp/TestData/3wayval.dat b/vendor/cryptopp/vendor_cryptopp/TestData/3wayval.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/3wayval.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/3wayval.dat diff --git a/vendor/cryptopp/cryptopp/TestData/aria.dat b/vendor/cryptopp/vendor_cryptopp/TestData/aria.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/aria.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/aria.dat diff --git a/vendor/cryptopp/cryptopp/TestData/camellia.dat b/vendor/cryptopp/vendor_cryptopp/TestData/camellia.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/camellia.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/camellia.dat diff --git a/vendor/cryptopp/cryptopp/TestData/cast128v.dat b/vendor/cryptopp/vendor_cryptopp/TestData/cast128v.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/cast128v.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/cast128v.dat diff --git a/vendor/cryptopp/cryptopp/TestData/cast256v.dat b/vendor/cryptopp/vendor_cryptopp/TestData/cast256v.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/cast256v.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/cast256v.dat diff --git a/vendor/cryptopp/cryptopp/TestData/descert.dat b/vendor/cryptopp/vendor_cryptopp/TestData/descert.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/descert.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/descert.dat diff --git a/vendor/cryptopp/cryptopp/TestData/dh1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/dh1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/dh1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/dh1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/dh2048.dat b/vendor/cryptopp/vendor_cryptopp/TestData/dh2048.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/dh2048.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/dh2048.dat diff --git a/vendor/cryptopp/cryptopp/TestData/dlie1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/dlie1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/dlie1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/dlie1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/dlie2048.dat b/vendor/cryptopp/vendor_cryptopp/TestData/dlie2048.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/dlie2048.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/dlie2048.dat diff --git a/vendor/cryptopp/cryptopp/TestData/dsa1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/dsa1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/dsa1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/dsa1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/dsa1024b.dat b/vendor/cryptopp/vendor_cryptopp/TestData/dsa1024b.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/dsa1024b.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/dsa1024b.dat diff --git a/vendor/cryptopp/cryptopp/TestData/dsa512.dat b/vendor/cryptopp/vendor_cryptopp/TestData/dsa512.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/dsa512.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/dsa512.dat diff --git a/vendor/cryptopp/cryptopp/TestData/elgc1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/elgc1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/elgc1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/elgc1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/esig1023.dat b/vendor/cryptopp/vendor_cryptopp/TestData/esig1023.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/esig1023.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/esig1023.dat diff --git a/vendor/cryptopp/cryptopp/TestData/esig1536.dat b/vendor/cryptopp/vendor_cryptopp/TestData/esig1536.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/esig1536.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/esig1536.dat diff --git a/vendor/cryptopp/cryptopp/TestData/esig2046.dat b/vendor/cryptopp/vendor_cryptopp/TestData/esig2046.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/esig2046.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/esig2046.dat diff --git a/vendor/cryptopp/cryptopp/TestData/fhmqv160.dat b/vendor/cryptopp/vendor_cryptopp/TestData/fhmqv160.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/fhmqv160.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/fhmqv160.dat diff --git a/vendor/cryptopp/cryptopp/TestData/fhmqv256.dat b/vendor/cryptopp/vendor_cryptopp/TestData/fhmqv256.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/fhmqv256.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/fhmqv256.dat diff --git a/vendor/cryptopp/cryptopp/TestData/fhmqv384.dat b/vendor/cryptopp/vendor_cryptopp/TestData/fhmqv384.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/fhmqv384.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/fhmqv384.dat diff --git a/vendor/cryptopp/cryptopp/TestData/fhmqv512.dat b/vendor/cryptopp/vendor_cryptopp/TestData/fhmqv512.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/fhmqv512.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/fhmqv512.dat diff --git a/vendor/cryptopp/cryptopp/TestData/gostval.dat b/vendor/cryptopp/vendor_cryptopp/TestData/gostval.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/gostval.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/gostval.dat diff --git a/vendor/cryptopp/cryptopp/TestData/hmqv160.dat b/vendor/cryptopp/vendor_cryptopp/TestData/hmqv160.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/hmqv160.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/hmqv160.dat diff --git a/vendor/cryptopp/cryptopp/TestData/hmqv256.dat b/vendor/cryptopp/vendor_cryptopp/TestData/hmqv256.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/hmqv256.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/hmqv256.dat diff --git a/vendor/cryptopp/cryptopp/TestData/hmqv384.dat b/vendor/cryptopp/vendor_cryptopp/TestData/hmqv384.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/hmqv384.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/hmqv384.dat diff --git a/vendor/cryptopp/cryptopp/TestData/hmqv512.dat b/vendor/cryptopp/vendor_cryptopp/TestData/hmqv512.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/hmqv512.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/hmqv512.dat diff --git a/vendor/cryptopp/cryptopp/TestData/ideaval.dat b/vendor/cryptopp/vendor_cryptopp/TestData/ideaval.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/ideaval.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/ideaval.dat diff --git a/vendor/cryptopp/cryptopp/TestData/luc1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/luc1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/luc1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/luc1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/luc2048.dat b/vendor/cryptopp/vendor_cryptopp/TestData/luc2048.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/luc2048.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/luc2048.dat diff --git a/vendor/cryptopp/cryptopp/TestData/lucc1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/lucc1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/lucc1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/lucc1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/lucc512.dat b/vendor/cryptopp/vendor_cryptopp/TestData/lucc512.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/lucc512.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/lucc512.dat diff --git a/vendor/cryptopp/cryptopp/TestData/lucd1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/lucd1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/lucd1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/lucd1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/lucd512.dat b/vendor/cryptopp/vendor_cryptopp/TestData/lucd512.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/lucd512.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/lucd512.dat diff --git a/vendor/cryptopp/cryptopp/TestData/lucs1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/lucs1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/lucs1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/lucs1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/lucs512.dat b/vendor/cryptopp/vendor_cryptopp/TestData/lucs512.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/lucs512.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/lucs512.dat diff --git a/vendor/cryptopp/cryptopp/TestData/marsval.dat b/vendor/cryptopp/vendor_cryptopp/TestData/marsval.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/marsval.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/marsval.dat diff --git a/vendor/cryptopp/cryptopp/TestData/mqv1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/mqv1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/mqv1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/mqv1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/mqv2048.dat b/vendor/cryptopp/vendor_cryptopp/TestData/mqv2048.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/mqv2048.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/mqv2048.dat diff --git a/vendor/cryptopp/cryptopp/TestData/nr1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/nr1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/nr1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/nr1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/nr2048.dat b/vendor/cryptopp/vendor_cryptopp/TestData/nr2048.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/nr2048.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/nr2048.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rabi1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rabi1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rabi1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rabi1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rabi2048.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rabi2048.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rabi2048.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rabi2048.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rc2val.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rc2val.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rc2val.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rc2val.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rc5val.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rc5val.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rc5val.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rc5val.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rc6val.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rc6val.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rc6val.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rc6val.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rijndael.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rijndael.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rijndael.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rijndael.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rsa1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rsa1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rsa1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rsa1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rsa2048.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rsa2048.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rsa2048.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rsa2048.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rsa2048a.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rsa2048a.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rsa2048a.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rsa2048a.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rsa400pb.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rsa400pb.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rsa400pb.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rsa400pb.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rsa400pv.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rsa400pv.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rsa400pv.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rsa400pv.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rsa512a.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rsa512a.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rsa512a.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rsa512a.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rw1024.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rw1024.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rw1024.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rw1024.dat diff --git a/vendor/cryptopp/cryptopp/TestData/rw2048.dat b/vendor/cryptopp/vendor_cryptopp/TestData/rw2048.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/rw2048.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/rw2048.dat diff --git a/vendor/cryptopp/cryptopp/TestData/saferval.dat b/vendor/cryptopp/vendor_cryptopp/TestData/saferval.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/saferval.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/saferval.dat diff --git a/vendor/cryptopp/cryptopp/TestData/serpentv.dat b/vendor/cryptopp/vendor_cryptopp/TestData/serpentv.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/serpentv.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/serpentv.dat diff --git a/vendor/cryptopp/cryptopp/TestData/shacal2v.dat b/vendor/cryptopp/vendor_cryptopp/TestData/shacal2v.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/shacal2v.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/shacal2v.dat diff --git a/vendor/cryptopp/cryptopp/TestData/sharkval.dat b/vendor/cryptopp/vendor_cryptopp/TestData/sharkval.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/sharkval.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/sharkval.dat diff --git a/vendor/cryptopp/cryptopp/TestData/skipjack.dat b/vendor/cryptopp/vendor_cryptopp/TestData/skipjack.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/skipjack.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/skipjack.dat diff --git a/vendor/cryptopp/cryptopp/TestData/squareva.dat b/vendor/cryptopp/vendor_cryptopp/TestData/squareva.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/squareva.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/squareva.dat diff --git a/vendor/cryptopp/cryptopp/TestData/twofishv.dat b/vendor/cryptopp/vendor_cryptopp/TestData/twofishv.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/twofishv.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/twofishv.dat diff --git a/vendor/cryptopp/cryptopp/TestData/usage.dat b/vendor/cryptopp/vendor_cryptopp/TestData/usage.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/usage.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/usage.dat diff --git a/vendor/cryptopp/cryptopp/TestData/xtrdh171.dat b/vendor/cryptopp/vendor_cryptopp/TestData/xtrdh171.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/xtrdh171.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/xtrdh171.dat diff --git a/vendor/cryptopp/cryptopp/TestData/xtrdh342.dat b/vendor/cryptopp/vendor_cryptopp/TestData/xtrdh342.dat similarity index 100% rename from vendor/cryptopp/cryptopp/TestData/xtrdh342.dat rename to vendor/cryptopp/vendor_cryptopp/TestData/xtrdh342.dat diff --git a/vendor/cryptopp/cryptopp/TestScripts/change-version.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/change-version.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/change-version.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/change-version.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/coverity-linux.txt b/vendor/cryptopp/vendor_cryptopp/TestScripts/coverity-linux.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/coverity-linux.txt rename to vendor/cryptopp/vendor_cryptopp/TestScripts/coverity-linux.txt diff --git a/vendor/cryptopp/cryptopp/TestScripts/coverity-macosx.txt b/vendor/cryptopp/vendor_cryptopp/TestScripts/coverity-macosx.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/coverity-macosx.txt rename to vendor/cryptopp/vendor_cryptopp/TestScripts/coverity-macosx.txt diff --git a/vendor/cryptopp/cryptopp/TestScripts/coverity-windows.txt b/vendor/cryptopp/vendor_cryptopp/TestScripts/coverity-windows.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/coverity-windows.txt rename to vendor/cryptopp/vendor_cryptopp/TestScripts/coverity-windows.txt diff --git a/vendor/cryptopp/cryptopp/TestScripts/cryptdll-windows.cmd b/vendor/cryptopp/vendor_cryptopp/TestScripts/cryptdll-windows.cmd similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/cryptdll-windows.cmd rename to vendor/cryptopp/vendor_cryptopp/TestScripts/cryptdll-windows.cmd diff --git a/vendor/cryptopp/cryptopp/TestScripts/cryptest-android.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-android.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/cryptest-android.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-android.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/cryptest-coverity.cpp b/vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-coverity.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/cryptest-coverity.cpp rename to vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-coverity.cpp diff --git a/vendor/cryptopp/cryptopp/TestScripts/cryptest-ios.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-ios.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/cryptest-ios.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-ios.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/cryptest-symbols.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-symbols.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/cryptest-symbols.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-symbols.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/cryptest-tidy.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-tidy.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/cryptest-tidy.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-tidy.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/cryptest.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/cryptest.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/governor.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/governor.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/governor.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/governor.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/install-android.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/install-android.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/install-android.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/install-android.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/make-benchmarks.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/make-benchmarks.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/make-benchmarks.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/make-benchmarks.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/reset-fork.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/reset-fork.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/reset-fork.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/reset-fork.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/setenv-android-old.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/setenv-android-old.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/setenv-android-old.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/setenv-android-old.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/setenv-android.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/setenv-android.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/setenv-android.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/setenv-android.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/setenv-embedded.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/setenv-embedded.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/setenv-embedded.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/setenv-embedded.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/setenv-ios.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/setenv-ios.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/setenv-ios.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/setenv-ios.sh diff --git a/vendor/cryptopp/cryptopp/TestScripts/tweetnacl.sh b/vendor/cryptopp/vendor_cryptopp/TestScripts/tweetnacl.sh similarity index 100% rename from vendor/cryptopp/cryptopp/TestScripts/tweetnacl.sh rename to vendor/cryptopp/vendor_cryptopp/TestScripts/tweetnacl.sh diff --git a/vendor/cryptopp/cryptopp/TestVectors/Readme.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/Readme.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/Readme.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/Readme.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/aes.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/aes.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/aes.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/aes.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/all.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/all.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/all.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/all.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/aria.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/aria.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/aria.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/aria.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/blake2.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/blake2.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/blake2.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/blake2.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/blake2b.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/blake2b.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/blake2b.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/blake2b.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/blake2s.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/blake2s.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/blake2s.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/blake2s.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/camellia.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/camellia.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/camellia.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/camellia.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/ccm.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/ccm.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/ccm.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/ccm.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/chacha.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/chacha.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/chacha.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/chacha.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/cmac.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/cmac.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/cmac.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/cmac.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/dlies.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/dlies.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/dlies.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/dlies.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/dsa.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/dsa.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/dsa.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/dsa.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/dsa_1363.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/dsa_1363.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/dsa_1363.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/dsa_1363.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/dsa_rfc6979.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/dsa_rfc6979.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/dsa_rfc6979.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/dsa_rfc6979.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/eax.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/eax.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/eax.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/eax.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/esign.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/esign.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/esign.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/esign.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/gcm.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/gcm.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/gcm.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/gcm.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/hkdf.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/hkdf.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/hkdf.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/hkdf.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/hmac.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/hmac.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/hmac.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/hmac.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/kalyna.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/kalyna.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/kalyna.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/kalyna.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/keccak.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/keccak.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/keccak.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/keccak.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/mars.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/mars.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/mars.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/mars.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/nr.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/nr.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/nr.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/nr.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/ocb.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/ocb.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/ocb.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/ocb.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/panama.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/panama.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/panama.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/panama.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/rsa_oaep.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/rsa_oaep.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/rsa_oaep.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/rsa_oaep.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/rsa_pkcs1_1_5.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/rsa_pkcs1_1_5.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/rsa_pkcs1_1_5.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/rsa_pkcs1_1_5.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/rsa_pss.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/rsa_pss.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/rsa_pss.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/rsa_pss.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/rw.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/rw.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/rw.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/rw.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/salsa.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/salsa.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/salsa.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/salsa.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/seal.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/seal.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/seal.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/seal.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/seed.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/seed.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/seed.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/seed.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha1_160_fips_180.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha1_160_fips_180.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha1_160_fips_180.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha1_160_fips_180.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha1_fips_180.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha1_fips_180.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha1_fips_180.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha1_fips_180.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha2.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha2.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha2.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha2.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha2_224_fips_180.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha2_224_fips_180.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha2_224_fips_180.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha2_224_fips_180.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha2_256_fips_180.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha2_256_fips_180.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha2_256_fips_180.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha2_256_fips_180.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha2_384_fips_180.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha2_384_fips_180.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha2_384_fips_180.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha2_384_fips_180.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha2_512_fips_180.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha2_512_fips_180.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha2_512_fips_180.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha2_512_fips_180.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha2_fips_180.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha2_fips_180.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha2_fips_180.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha2_fips_180.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha3.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha3.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha3.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha3.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha3_224_fips_202.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha3_224_fips_202.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha3_224_fips_202.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha3_224_fips_202.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha3_256_fips_202.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha3_256_fips_202.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha3_256_fips_202.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha3_256_fips_202.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha3_384_fips_202.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha3_384_fips_202.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha3_384_fips_202.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha3_384_fips_202.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha3_512_fips_202.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha3_512_fips_202.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha3_512_fips_202.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha3_512_fips_202.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sha3_fips_202.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sha3_fips_202.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sha3_fips_202.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sha3_fips_202.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/shacal2.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/shacal2.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/shacal2.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/shacal2.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/simon.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/simon.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/simon.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/simon.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/siphash.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/siphash.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/siphash.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/siphash.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sm3.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sm3.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sm3.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sm3.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sm4.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sm4.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sm4.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sm4.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/sosemanuk.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/sosemanuk.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/sosemanuk.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/sosemanuk.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/speck.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/speck.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/speck.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/speck.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/tea.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/tea.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/tea.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/tea.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/threefish.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/threefish.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/threefish.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/threefish.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/tls_chacha.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/tls_chacha.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/tls_chacha.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/tls_chacha.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/ttmac.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/ttmac.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/ttmac.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/ttmac.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/vmac.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/vmac.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/vmac.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/vmac.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/wake.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/wake.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/wake.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/wake.txt diff --git a/vendor/cryptopp/cryptopp/TestVectors/whrlpool.txt b/vendor/cryptopp/vendor_cryptopp/TestVectors/whrlpool.txt similarity index 100% rename from vendor/cryptopp/cryptopp/TestVectors/whrlpool.txt rename to vendor/cryptopp/vendor_cryptopp/TestVectors/whrlpool.txt diff --git a/vendor/cryptopp/cryptopp/adhoc.cpp.proto b/vendor/cryptopp/vendor_cryptopp/adhoc.cpp.proto similarity index 100% rename from vendor/cryptopp/cryptopp/adhoc.cpp.proto rename to vendor/cryptopp/vendor_cryptopp/adhoc.cpp.proto diff --git a/vendor/cryptopp/cryptopp/adler32.cpp b/vendor/cryptopp/vendor_cryptopp/adler32.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/adler32.cpp rename to vendor/cryptopp/vendor_cryptopp/adler32.cpp diff --git a/vendor/cryptopp/cryptopp/adler32.h b/vendor/cryptopp/vendor_cryptopp/adler32.h similarity index 100% rename from vendor/cryptopp/cryptopp/adler32.h rename to vendor/cryptopp/vendor_cryptopp/adler32.h diff --git a/vendor/cryptopp/cryptopp/adv-simd.h b/vendor/cryptopp/vendor_cryptopp/adv-simd.h similarity index 100% rename from vendor/cryptopp/cryptopp/adv-simd.h rename to vendor/cryptopp/vendor_cryptopp/adv-simd.h diff --git a/vendor/cryptopp/cryptopp/aes.h b/vendor/cryptopp/vendor_cryptopp/aes.h similarity index 100% rename from vendor/cryptopp/cryptopp/aes.h rename to vendor/cryptopp/vendor_cryptopp/aes.h diff --git a/vendor/cryptopp/cryptopp/algebra.cpp b/vendor/cryptopp/vendor_cryptopp/algebra.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/algebra.cpp rename to vendor/cryptopp/vendor_cryptopp/algebra.cpp diff --git a/vendor/cryptopp/cryptopp/algebra.h b/vendor/cryptopp/vendor_cryptopp/algebra.h similarity index 100% rename from vendor/cryptopp/cryptopp/algebra.h rename to vendor/cryptopp/vendor_cryptopp/algebra.h diff --git a/vendor/cryptopp/cryptopp/algparam.cpp b/vendor/cryptopp/vendor_cryptopp/algparam.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/algparam.cpp rename to vendor/cryptopp/vendor_cryptopp/algparam.cpp diff --git a/vendor/cryptopp/cryptopp/algparam.h b/vendor/cryptopp/vendor_cryptopp/algparam.h similarity index 100% rename from vendor/cryptopp/cryptopp/algparam.h rename to vendor/cryptopp/vendor_cryptopp/algparam.h diff --git a/vendor/cryptopp/cryptopp/arc4.cpp b/vendor/cryptopp/vendor_cryptopp/arc4.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/arc4.cpp rename to vendor/cryptopp/vendor_cryptopp/arc4.cpp diff --git a/vendor/cryptopp/cryptopp/arc4.h b/vendor/cryptopp/vendor_cryptopp/arc4.h similarity index 100% rename from vendor/cryptopp/cryptopp/arc4.h rename to vendor/cryptopp/vendor_cryptopp/arc4.h diff --git a/vendor/cryptopp/cryptopp/argnames.h b/vendor/cryptopp/vendor_cryptopp/argnames.h similarity index 100% rename from vendor/cryptopp/cryptopp/argnames.h rename to vendor/cryptopp/vendor_cryptopp/argnames.h diff --git a/vendor/cryptopp/cryptopp/aria-simd.cpp b/vendor/cryptopp/vendor_cryptopp/aria-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/aria-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/aria-simd.cpp diff --git a/vendor/cryptopp/cryptopp/aria.cpp b/vendor/cryptopp/vendor_cryptopp/aria.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/aria.cpp rename to vendor/cryptopp/vendor_cryptopp/aria.cpp diff --git a/vendor/cryptopp/cryptopp/aria.h b/vendor/cryptopp/vendor_cryptopp/aria.h similarity index 100% rename from vendor/cryptopp/cryptopp/aria.h rename to vendor/cryptopp/vendor_cryptopp/aria.h diff --git a/vendor/cryptopp/cryptopp/ariatab.cpp b/vendor/cryptopp/vendor_cryptopp/ariatab.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/ariatab.cpp rename to vendor/cryptopp/vendor_cryptopp/ariatab.cpp diff --git a/vendor/cryptopp/cryptopp/asn.cpp b/vendor/cryptopp/vendor_cryptopp/asn.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/asn.cpp rename to vendor/cryptopp/vendor_cryptopp/asn.cpp diff --git a/vendor/cryptopp/cryptopp/asn.h b/vendor/cryptopp/vendor_cryptopp/asn.h similarity index 100% rename from vendor/cryptopp/cryptopp/asn.h rename to vendor/cryptopp/vendor_cryptopp/asn.h diff --git a/vendor/cryptopp/cryptopp/authenc.cpp b/vendor/cryptopp/vendor_cryptopp/authenc.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/authenc.cpp rename to vendor/cryptopp/vendor_cryptopp/authenc.cpp diff --git a/vendor/cryptopp/cryptopp/authenc.h b/vendor/cryptopp/vendor_cryptopp/authenc.h similarity index 100% rename from vendor/cryptopp/cryptopp/authenc.h rename to vendor/cryptopp/vendor_cryptopp/authenc.h diff --git a/vendor/cryptopp/cryptopp/base32.cpp b/vendor/cryptopp/vendor_cryptopp/base32.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/base32.cpp rename to vendor/cryptopp/vendor_cryptopp/base32.cpp diff --git a/vendor/cryptopp/cryptopp/base32.h b/vendor/cryptopp/vendor_cryptopp/base32.h similarity index 100% rename from vendor/cryptopp/cryptopp/base32.h rename to vendor/cryptopp/vendor_cryptopp/base32.h diff --git a/vendor/cryptopp/cryptopp/base64.cpp b/vendor/cryptopp/vendor_cryptopp/base64.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/base64.cpp rename to vendor/cryptopp/vendor_cryptopp/base64.cpp diff --git a/vendor/cryptopp/cryptopp/base64.h b/vendor/cryptopp/vendor_cryptopp/base64.h similarity index 100% rename from vendor/cryptopp/cryptopp/base64.h rename to vendor/cryptopp/vendor_cryptopp/base64.h diff --git a/vendor/cryptopp/cryptopp/basecode.cpp b/vendor/cryptopp/vendor_cryptopp/basecode.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/basecode.cpp rename to vendor/cryptopp/vendor_cryptopp/basecode.cpp diff --git a/vendor/cryptopp/cryptopp/basecode.h b/vendor/cryptopp/vendor_cryptopp/basecode.h similarity index 100% rename from vendor/cryptopp/cryptopp/basecode.h rename to vendor/cryptopp/vendor_cryptopp/basecode.h diff --git a/vendor/cryptopp/cryptopp/bds10.zip b/vendor/cryptopp/vendor_cryptopp/bds10.zip similarity index 100% rename from vendor/cryptopp/cryptopp/bds10.zip rename to vendor/cryptopp/vendor_cryptopp/bds10.zip diff --git a/vendor/cryptopp/cryptopp/bench.h b/vendor/cryptopp/vendor_cryptopp/bench.h similarity index 100% rename from vendor/cryptopp/cryptopp/bench.h rename to vendor/cryptopp/vendor_cryptopp/bench.h diff --git a/vendor/cryptopp/cryptopp/bench1.cpp b/vendor/cryptopp/vendor_cryptopp/bench1.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/bench1.cpp rename to vendor/cryptopp/vendor_cryptopp/bench1.cpp diff --git a/vendor/cryptopp/cryptopp/bench2.cpp b/vendor/cryptopp/vendor_cryptopp/bench2.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/bench2.cpp rename to vendor/cryptopp/vendor_cryptopp/bench2.cpp diff --git a/vendor/cryptopp/cryptopp/bfinit.cpp b/vendor/cryptopp/vendor_cryptopp/bfinit.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/bfinit.cpp rename to vendor/cryptopp/vendor_cryptopp/bfinit.cpp diff --git a/vendor/cryptopp/cryptopp/blake2-simd.cpp b/vendor/cryptopp/vendor_cryptopp/blake2-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/blake2-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/blake2-simd.cpp diff --git a/vendor/cryptopp/cryptopp/blake2.cpp b/vendor/cryptopp/vendor_cryptopp/blake2.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/blake2.cpp rename to vendor/cryptopp/vendor_cryptopp/blake2.cpp diff --git a/vendor/cryptopp/cryptopp/blake2.h b/vendor/cryptopp/vendor_cryptopp/blake2.h similarity index 100% rename from vendor/cryptopp/cryptopp/blake2.h rename to vendor/cryptopp/vendor_cryptopp/blake2.h diff --git a/vendor/cryptopp/cryptopp/blowfish.cpp b/vendor/cryptopp/vendor_cryptopp/blowfish.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/blowfish.cpp rename to vendor/cryptopp/vendor_cryptopp/blowfish.cpp diff --git a/vendor/cryptopp/cryptopp/blowfish.h b/vendor/cryptopp/vendor_cryptopp/blowfish.h similarity index 100% rename from vendor/cryptopp/cryptopp/blowfish.h rename to vendor/cryptopp/vendor_cryptopp/blowfish.h diff --git a/vendor/cryptopp/cryptopp/blumshub.cpp b/vendor/cryptopp/vendor_cryptopp/blumshub.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/blumshub.cpp rename to vendor/cryptopp/vendor_cryptopp/blumshub.cpp diff --git a/vendor/cryptopp/cryptopp/blumshub.h b/vendor/cryptopp/vendor_cryptopp/blumshub.h similarity index 100% rename from vendor/cryptopp/cryptopp/blumshub.h rename to vendor/cryptopp/vendor_cryptopp/blumshub.h diff --git a/vendor/cryptopp/cryptopp/camellia.cpp b/vendor/cryptopp/vendor_cryptopp/camellia.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/camellia.cpp rename to vendor/cryptopp/vendor_cryptopp/camellia.cpp diff --git a/vendor/cryptopp/cryptopp/camellia.h b/vendor/cryptopp/vendor_cryptopp/camellia.h similarity index 100% rename from vendor/cryptopp/cryptopp/camellia.h rename to vendor/cryptopp/vendor_cryptopp/camellia.h diff --git a/vendor/cryptopp/cryptopp/cast.cpp b/vendor/cryptopp/vendor_cryptopp/cast.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/cast.cpp rename to vendor/cryptopp/vendor_cryptopp/cast.cpp diff --git a/vendor/cryptopp/cryptopp/cast.h b/vendor/cryptopp/vendor_cryptopp/cast.h similarity index 100% rename from vendor/cryptopp/cryptopp/cast.h rename to vendor/cryptopp/vendor_cryptopp/cast.h diff --git a/vendor/cryptopp/cryptopp/casts.cpp b/vendor/cryptopp/vendor_cryptopp/casts.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/casts.cpp rename to vendor/cryptopp/vendor_cryptopp/casts.cpp diff --git a/vendor/cryptopp/cryptopp/cbcmac.cpp b/vendor/cryptopp/vendor_cryptopp/cbcmac.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/cbcmac.cpp rename to vendor/cryptopp/vendor_cryptopp/cbcmac.cpp diff --git a/vendor/cryptopp/cryptopp/cbcmac.h b/vendor/cryptopp/vendor_cryptopp/cbcmac.h similarity index 100% rename from vendor/cryptopp/cryptopp/cbcmac.h rename to vendor/cryptopp/vendor_cryptopp/cbcmac.h diff --git a/vendor/cryptopp/cryptopp/ccm.cpp b/vendor/cryptopp/vendor_cryptopp/ccm.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/ccm.cpp rename to vendor/cryptopp/vendor_cryptopp/ccm.cpp diff --git a/vendor/cryptopp/cryptopp/ccm.h b/vendor/cryptopp/vendor_cryptopp/ccm.h similarity index 100% rename from vendor/cryptopp/cryptopp/ccm.h rename to vendor/cryptopp/vendor_cryptopp/ccm.h diff --git a/vendor/cryptopp/cryptopp/chacha.cpp b/vendor/cryptopp/vendor_cryptopp/chacha.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/chacha.cpp rename to vendor/cryptopp/vendor_cryptopp/chacha.cpp diff --git a/vendor/cryptopp/cryptopp/chacha.h b/vendor/cryptopp/vendor_cryptopp/chacha.h similarity index 100% rename from vendor/cryptopp/cryptopp/chacha.h rename to vendor/cryptopp/vendor_cryptopp/chacha.h diff --git a/vendor/cryptopp/cryptopp/channels.cpp b/vendor/cryptopp/vendor_cryptopp/channels.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/channels.cpp rename to vendor/cryptopp/vendor_cryptopp/channels.cpp diff --git a/vendor/cryptopp/cryptopp/channels.h b/vendor/cryptopp/vendor_cryptopp/channels.h similarity index 100% rename from vendor/cryptopp/cryptopp/channels.h rename to vendor/cryptopp/vendor_cryptopp/channels.h diff --git a/vendor/cryptopp/cryptopp/cmac.cpp b/vendor/cryptopp/vendor_cryptopp/cmac.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/cmac.cpp rename to vendor/cryptopp/vendor_cryptopp/cmac.cpp diff --git a/vendor/cryptopp/cryptopp/cmac.h b/vendor/cryptopp/vendor_cryptopp/cmac.h similarity index 100% rename from vendor/cryptopp/cryptopp/cmac.h rename to vendor/cryptopp/vendor_cryptopp/cmac.h diff --git a/vendor/cryptopp/cryptopp/config.h b/vendor/cryptopp/vendor_cryptopp/config.h similarity index 100% rename from vendor/cryptopp/cryptopp/config.h rename to vendor/cryptopp/vendor_cryptopp/config.h diff --git a/vendor/cryptopp/cryptopp/cpu.cpp b/vendor/cryptopp/vendor_cryptopp/cpu.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/cpu.cpp rename to vendor/cryptopp/vendor_cryptopp/cpu.cpp diff --git a/vendor/cryptopp/cryptopp/cpu.h b/vendor/cryptopp/vendor_cryptopp/cpu.h similarity index 100% rename from vendor/cryptopp/cryptopp/cpu.h rename to vendor/cryptopp/vendor_cryptopp/cpu.h diff --git a/vendor/cryptopp/cryptopp/crc-simd.cpp b/vendor/cryptopp/vendor_cryptopp/crc-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/crc-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/crc-simd.cpp diff --git a/vendor/cryptopp/cryptopp/crc.cpp b/vendor/cryptopp/vendor_cryptopp/crc.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/crc.cpp rename to vendor/cryptopp/vendor_cryptopp/crc.cpp diff --git a/vendor/cryptopp/cryptopp/crc.h b/vendor/cryptopp/vendor_cryptopp/crc.h similarity index 100% rename from vendor/cryptopp/cryptopp/crc.h rename to vendor/cryptopp/vendor_cryptopp/crc.h diff --git a/vendor/cryptopp/cryptopp/cryptdll.vcxproj b/vendor/cryptopp/vendor_cryptopp/cryptdll.vcxproj similarity index 100% rename from vendor/cryptopp/cryptopp/cryptdll.vcxproj rename to vendor/cryptopp/vendor_cryptopp/cryptdll.vcxproj diff --git a/vendor/cryptopp/cryptopp/cryptdll.vcxproj.filters b/vendor/cryptopp/vendor_cryptopp/cryptdll.vcxproj.filters similarity index 100% rename from vendor/cryptopp/cryptopp/cryptdll.vcxproj.filters rename to vendor/cryptopp/vendor_cryptopp/cryptdll.vcxproj.filters diff --git a/vendor/cryptopp/cryptopp/cryptest.nmake b/vendor/cryptopp/vendor_cryptopp/cryptest.nmake similarity index 100% rename from vendor/cryptopp/cryptopp/cryptest.nmake rename to vendor/cryptopp/vendor_cryptopp/cryptest.nmake diff --git a/vendor/cryptopp/cryptopp/cryptest.sh b/vendor/cryptopp/vendor_cryptopp/cryptest.sh similarity index 100% rename from vendor/cryptopp/cryptopp/cryptest.sh rename to vendor/cryptopp/vendor_cryptopp/cryptest.sh diff --git a/vendor/cryptopp/cryptopp/cryptest.sln b/vendor/cryptopp/vendor_cryptopp/cryptest.sln similarity index 100% rename from vendor/cryptopp/cryptopp/cryptest.sln rename to vendor/cryptopp/vendor_cryptopp/cryptest.sln diff --git a/vendor/cryptopp/cryptopp/cryptest.vcxproj b/vendor/cryptopp/vendor_cryptopp/cryptest.vcxproj similarity index 100% rename from vendor/cryptopp/cryptopp/cryptest.vcxproj rename to vendor/cryptopp/vendor_cryptopp/cryptest.vcxproj diff --git a/vendor/cryptopp/cryptopp/cryptest.vcxproj.filters b/vendor/cryptopp/vendor_cryptopp/cryptest.vcxproj.filters similarity index 100% rename from vendor/cryptopp/cryptopp/cryptest.vcxproj.filters rename to vendor/cryptopp/vendor_cryptopp/cryptest.vcxproj.filters diff --git a/vendor/cryptopp/cryptopp/cryptlib.cpp b/vendor/cryptopp/vendor_cryptopp/cryptlib.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/cryptlib.cpp rename to vendor/cryptopp/vendor_cryptopp/cryptlib.cpp diff --git a/vendor/cryptopp/cryptopp/cryptlib.h b/vendor/cryptopp/vendor_cryptopp/cryptlib.h similarity index 100% rename from vendor/cryptopp/cryptopp/cryptlib.h rename to vendor/cryptopp/vendor_cryptopp/cryptlib.h diff --git a/vendor/cryptopp/cryptopp/cryptlib.vcxproj b/vendor/cryptopp/vendor_cryptopp/cryptlib.vcxproj similarity index 100% rename from vendor/cryptopp/cryptopp/cryptlib.vcxproj rename to vendor/cryptopp/vendor_cryptopp/cryptlib.vcxproj diff --git a/vendor/cryptopp/cryptopp/cryptlib.vcxproj.filters b/vendor/cryptopp/vendor_cryptopp/cryptlib.vcxproj.filters similarity index 100% rename from vendor/cryptopp/cryptopp/cryptlib.vcxproj.filters rename to vendor/cryptopp/vendor_cryptopp/cryptlib.vcxproj.filters diff --git a/vendor/cryptopp/cryptopp/cryptopp-config.cmake b/vendor/cryptopp/vendor_cryptopp/cryptopp-config.cmake similarity index 100% rename from vendor/cryptopp/cryptopp/cryptopp-config.cmake rename to vendor/cryptopp/vendor_cryptopp/cryptopp-config.cmake diff --git a/vendor/cryptopp/cryptopp/cryptopp.mapfile b/vendor/cryptopp/vendor_cryptopp/cryptopp.mapfile similarity index 100% rename from vendor/cryptopp/cryptopp/cryptopp.mapfile rename to vendor/cryptopp/vendor_cryptopp/cryptopp.mapfile diff --git a/vendor/cryptopp/cryptopp/cryptopp.rc b/vendor/cryptopp/vendor_cryptopp/cryptopp.rc similarity index 100% rename from vendor/cryptopp/cryptopp/cryptopp.rc rename to vendor/cryptopp/vendor_cryptopp/cryptopp.rc diff --git a/vendor/cryptopp/cryptopp/cryptopp.supp b/vendor/cryptopp/vendor_cryptopp/cryptopp.supp similarity index 100% rename from vendor/cryptopp/cryptopp/cryptopp.supp rename to vendor/cryptopp/vendor_cryptopp/cryptopp.supp diff --git a/vendor/cryptopp/cryptopp/datatest.cpp b/vendor/cryptopp/vendor_cryptopp/datatest.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/datatest.cpp rename to vendor/cryptopp/vendor_cryptopp/datatest.cpp diff --git a/vendor/cryptopp/cryptopp/default.cpp b/vendor/cryptopp/vendor_cryptopp/default.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/default.cpp rename to vendor/cryptopp/vendor_cryptopp/default.cpp diff --git a/vendor/cryptopp/cryptopp/default.h b/vendor/cryptopp/vendor_cryptopp/default.h similarity index 100% rename from vendor/cryptopp/cryptopp/default.h rename to vendor/cryptopp/vendor_cryptopp/default.h diff --git a/vendor/cryptopp/cryptopp/des.cpp b/vendor/cryptopp/vendor_cryptopp/des.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/des.cpp rename to vendor/cryptopp/vendor_cryptopp/des.cpp diff --git a/vendor/cryptopp/cryptopp/des.h b/vendor/cryptopp/vendor_cryptopp/des.h similarity index 100% rename from vendor/cryptopp/cryptopp/des.h rename to vendor/cryptopp/vendor_cryptopp/des.h diff --git a/vendor/cryptopp/cryptopp/dessp.cpp b/vendor/cryptopp/vendor_cryptopp/dessp.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/dessp.cpp rename to vendor/cryptopp/vendor_cryptopp/dessp.cpp diff --git a/vendor/cryptopp/cryptopp/dh.cpp b/vendor/cryptopp/vendor_cryptopp/dh.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/dh.cpp rename to vendor/cryptopp/vendor_cryptopp/dh.cpp diff --git a/vendor/cryptopp/cryptopp/dh.h b/vendor/cryptopp/vendor_cryptopp/dh.h similarity index 100% rename from vendor/cryptopp/cryptopp/dh.h rename to vendor/cryptopp/vendor_cryptopp/dh.h diff --git a/vendor/cryptopp/cryptopp/dh2.cpp b/vendor/cryptopp/vendor_cryptopp/dh2.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/dh2.cpp rename to vendor/cryptopp/vendor_cryptopp/dh2.cpp diff --git a/vendor/cryptopp/cryptopp/dh2.h b/vendor/cryptopp/vendor_cryptopp/dh2.h similarity index 100% rename from vendor/cryptopp/cryptopp/dh2.h rename to vendor/cryptopp/vendor_cryptopp/dh2.h diff --git a/vendor/cryptopp/cryptopp/dll.cpp b/vendor/cryptopp/vendor_cryptopp/dll.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/dll.cpp rename to vendor/cryptopp/vendor_cryptopp/dll.cpp diff --git a/vendor/cryptopp/cryptopp/dll.h b/vendor/cryptopp/vendor_cryptopp/dll.h similarity index 100% rename from vendor/cryptopp/cryptopp/dll.h rename to vendor/cryptopp/vendor_cryptopp/dll.h diff --git a/vendor/cryptopp/cryptopp/dlltest.cpp b/vendor/cryptopp/vendor_cryptopp/dlltest.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/dlltest.cpp rename to vendor/cryptopp/vendor_cryptopp/dlltest.cpp diff --git a/vendor/cryptopp/cryptopp/dlltest.vcxproj b/vendor/cryptopp/vendor_cryptopp/dlltest.vcxproj similarity index 100% rename from vendor/cryptopp/cryptopp/dlltest.vcxproj rename to vendor/cryptopp/vendor_cryptopp/dlltest.vcxproj diff --git a/vendor/cryptopp/cryptopp/dlltest.vcxproj.filters b/vendor/cryptopp/vendor_cryptopp/dlltest.vcxproj.filters similarity index 100% rename from vendor/cryptopp/cryptopp/dlltest.vcxproj.filters rename to vendor/cryptopp/vendor_cryptopp/dlltest.vcxproj.filters diff --git a/vendor/cryptopp/cryptopp/dmac.h b/vendor/cryptopp/vendor_cryptopp/dmac.h similarity index 100% rename from vendor/cryptopp/cryptopp/dmac.h rename to vendor/cryptopp/vendor_cryptopp/dmac.h diff --git a/vendor/cryptopp/cryptopp/drbg.h b/vendor/cryptopp/vendor_cryptopp/drbg.h similarity index 100% rename from vendor/cryptopp/cryptopp/drbg.h rename to vendor/cryptopp/vendor_cryptopp/drbg.h diff --git a/vendor/cryptopp/cryptopp/dsa.cpp b/vendor/cryptopp/vendor_cryptopp/dsa.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/dsa.cpp rename to vendor/cryptopp/vendor_cryptopp/dsa.cpp diff --git a/vendor/cryptopp/cryptopp/dsa.h b/vendor/cryptopp/vendor_cryptopp/dsa.h similarity index 100% rename from vendor/cryptopp/cryptopp/dsa.h rename to vendor/cryptopp/vendor_cryptopp/dsa.h diff --git a/vendor/cryptopp/cryptopp/eax.cpp b/vendor/cryptopp/vendor_cryptopp/eax.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/eax.cpp rename to vendor/cryptopp/vendor_cryptopp/eax.cpp diff --git a/vendor/cryptopp/cryptopp/eax.h b/vendor/cryptopp/vendor_cryptopp/eax.h similarity index 100% rename from vendor/cryptopp/cryptopp/eax.h rename to vendor/cryptopp/vendor_cryptopp/eax.h diff --git a/vendor/cryptopp/cryptopp/ec2n.cpp b/vendor/cryptopp/vendor_cryptopp/ec2n.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/ec2n.cpp rename to vendor/cryptopp/vendor_cryptopp/ec2n.cpp diff --git a/vendor/cryptopp/cryptopp/ec2n.h b/vendor/cryptopp/vendor_cryptopp/ec2n.h similarity index 100% rename from vendor/cryptopp/cryptopp/ec2n.h rename to vendor/cryptopp/vendor_cryptopp/ec2n.h diff --git a/vendor/cryptopp/cryptopp/eccrypto.cpp b/vendor/cryptopp/vendor_cryptopp/eccrypto.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/eccrypto.cpp rename to vendor/cryptopp/vendor_cryptopp/eccrypto.cpp diff --git a/vendor/cryptopp/cryptopp/eccrypto.h b/vendor/cryptopp/vendor_cryptopp/eccrypto.h similarity index 100% rename from vendor/cryptopp/cryptopp/eccrypto.h rename to vendor/cryptopp/vendor_cryptopp/eccrypto.h diff --git a/vendor/cryptopp/cryptopp/ecp.cpp b/vendor/cryptopp/vendor_cryptopp/ecp.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/ecp.cpp rename to vendor/cryptopp/vendor_cryptopp/ecp.cpp diff --git a/vendor/cryptopp/cryptopp/ecp.h b/vendor/cryptopp/vendor_cryptopp/ecp.h similarity index 100% rename from vendor/cryptopp/cryptopp/ecp.h rename to vendor/cryptopp/vendor_cryptopp/ecp.h diff --git a/vendor/cryptopp/cryptopp/ecpoint.h b/vendor/cryptopp/vendor_cryptopp/ecpoint.h similarity index 100% rename from vendor/cryptopp/cryptopp/ecpoint.h rename to vendor/cryptopp/vendor_cryptopp/ecpoint.h diff --git a/vendor/cryptopp/cryptopp/elgamal.cpp b/vendor/cryptopp/vendor_cryptopp/elgamal.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/elgamal.cpp rename to vendor/cryptopp/vendor_cryptopp/elgamal.cpp diff --git a/vendor/cryptopp/cryptopp/elgamal.h b/vendor/cryptopp/vendor_cryptopp/elgamal.h similarity index 100% rename from vendor/cryptopp/cryptopp/elgamal.h rename to vendor/cryptopp/vendor_cryptopp/elgamal.h diff --git a/vendor/cryptopp/cryptopp/emsa2.cpp b/vendor/cryptopp/vendor_cryptopp/emsa2.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/emsa2.cpp rename to vendor/cryptopp/vendor_cryptopp/emsa2.cpp diff --git a/vendor/cryptopp/cryptopp/emsa2.h b/vendor/cryptopp/vendor_cryptopp/emsa2.h similarity index 100% rename from vendor/cryptopp/cryptopp/emsa2.h rename to vendor/cryptopp/vendor_cryptopp/emsa2.h diff --git a/vendor/cryptopp/cryptopp/eprecomp.cpp b/vendor/cryptopp/vendor_cryptopp/eprecomp.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/eprecomp.cpp rename to vendor/cryptopp/vendor_cryptopp/eprecomp.cpp diff --git a/vendor/cryptopp/cryptopp/eprecomp.h b/vendor/cryptopp/vendor_cryptopp/eprecomp.h similarity index 100% rename from vendor/cryptopp/cryptopp/eprecomp.h rename to vendor/cryptopp/vendor_cryptopp/eprecomp.h diff --git a/vendor/cryptopp/cryptopp/esign.cpp b/vendor/cryptopp/vendor_cryptopp/esign.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/esign.cpp rename to vendor/cryptopp/vendor_cryptopp/esign.cpp diff --git a/vendor/cryptopp/cryptopp/esign.h b/vendor/cryptopp/vendor_cryptopp/esign.h similarity index 100% rename from vendor/cryptopp/cryptopp/esign.h rename to vendor/cryptopp/vendor_cryptopp/esign.h diff --git a/vendor/cryptopp/cryptopp/factory.h b/vendor/cryptopp/vendor_cryptopp/factory.h similarity index 100% rename from vendor/cryptopp/cryptopp/factory.h rename to vendor/cryptopp/vendor_cryptopp/factory.h diff --git a/vendor/cryptopp/cryptopp/fhmqv.h b/vendor/cryptopp/vendor_cryptopp/fhmqv.h similarity index 100% rename from vendor/cryptopp/cryptopp/fhmqv.h rename to vendor/cryptopp/vendor_cryptopp/fhmqv.h diff --git a/vendor/cryptopp/cryptopp/files.cpp b/vendor/cryptopp/vendor_cryptopp/files.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/files.cpp rename to vendor/cryptopp/vendor_cryptopp/files.cpp diff --git a/vendor/cryptopp/cryptopp/files.h b/vendor/cryptopp/vendor_cryptopp/files.h similarity index 100% rename from vendor/cryptopp/cryptopp/files.h rename to vendor/cryptopp/vendor_cryptopp/files.h diff --git a/vendor/cryptopp/cryptopp/filters.cpp b/vendor/cryptopp/vendor_cryptopp/filters.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/filters.cpp rename to vendor/cryptopp/vendor_cryptopp/filters.cpp diff --git a/vendor/cryptopp/cryptopp/filters.h b/vendor/cryptopp/vendor_cryptopp/filters.h similarity index 100% rename from vendor/cryptopp/cryptopp/filters.h rename to vendor/cryptopp/vendor_cryptopp/filters.h diff --git a/vendor/cryptopp/cryptopp/fips140.cpp b/vendor/cryptopp/vendor_cryptopp/fips140.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/fips140.cpp rename to vendor/cryptopp/vendor_cryptopp/fips140.cpp diff --git a/vendor/cryptopp/cryptopp/fips140.h b/vendor/cryptopp/vendor_cryptopp/fips140.h similarity index 100% rename from vendor/cryptopp/cryptopp/fips140.h rename to vendor/cryptopp/vendor_cryptopp/fips140.h diff --git a/vendor/cryptopp/cryptopp/fipsalgt.cpp b/vendor/cryptopp/vendor_cryptopp/fipsalgt.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/fipsalgt.cpp rename to vendor/cryptopp/vendor_cryptopp/fipsalgt.cpp diff --git a/vendor/cryptopp/cryptopp/fipstest.cpp b/vendor/cryptopp/vendor_cryptopp/fipstest.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/fipstest.cpp rename to vendor/cryptopp/vendor_cryptopp/fipstest.cpp diff --git a/vendor/cryptopp/cryptopp/fltrimpl.h b/vendor/cryptopp/vendor_cryptopp/fltrimpl.h similarity index 100% rename from vendor/cryptopp/cryptopp/fltrimpl.h rename to vendor/cryptopp/vendor_cryptopp/fltrimpl.h diff --git a/vendor/cryptopp/cryptopp/gcm-simd.cpp b/vendor/cryptopp/vendor_cryptopp/gcm-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/gcm-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/gcm-simd.cpp diff --git a/vendor/cryptopp/cryptopp/gcm.cpp b/vendor/cryptopp/vendor_cryptopp/gcm.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/gcm.cpp rename to vendor/cryptopp/vendor_cryptopp/gcm.cpp diff --git a/vendor/cryptopp/cryptopp/gcm.h b/vendor/cryptopp/vendor_cryptopp/gcm.h similarity index 100% rename from vendor/cryptopp/cryptopp/gcm.h rename to vendor/cryptopp/vendor_cryptopp/gcm.h diff --git a/vendor/cryptopp/cryptopp/gf256.cpp b/vendor/cryptopp/vendor_cryptopp/gf256.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/gf256.cpp rename to vendor/cryptopp/vendor_cryptopp/gf256.cpp diff --git a/vendor/cryptopp/cryptopp/gf256.h b/vendor/cryptopp/vendor_cryptopp/gf256.h similarity index 100% rename from vendor/cryptopp/cryptopp/gf256.h rename to vendor/cryptopp/vendor_cryptopp/gf256.h diff --git a/vendor/cryptopp/cryptopp/gf2_32.cpp b/vendor/cryptopp/vendor_cryptopp/gf2_32.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/gf2_32.cpp rename to vendor/cryptopp/vendor_cryptopp/gf2_32.cpp diff --git a/vendor/cryptopp/cryptopp/gf2_32.h b/vendor/cryptopp/vendor_cryptopp/gf2_32.h similarity index 100% rename from vendor/cryptopp/cryptopp/gf2_32.h rename to vendor/cryptopp/vendor_cryptopp/gf2_32.h diff --git a/vendor/cryptopp/cryptopp/gf2n.cpp b/vendor/cryptopp/vendor_cryptopp/gf2n.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/gf2n.cpp rename to vendor/cryptopp/vendor_cryptopp/gf2n.cpp diff --git a/vendor/cryptopp/cryptopp/gf2n.h b/vendor/cryptopp/vendor_cryptopp/gf2n.h similarity index 100% rename from vendor/cryptopp/cryptopp/gf2n.h rename to vendor/cryptopp/vendor_cryptopp/gf2n.h diff --git a/vendor/cryptopp/cryptopp/gfpcrypt.cpp b/vendor/cryptopp/vendor_cryptopp/gfpcrypt.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/gfpcrypt.cpp rename to vendor/cryptopp/vendor_cryptopp/gfpcrypt.cpp diff --git a/vendor/cryptopp/cryptopp/gfpcrypt.h b/vendor/cryptopp/vendor_cryptopp/gfpcrypt.h similarity index 100% rename from vendor/cryptopp/cryptopp/gfpcrypt.h rename to vendor/cryptopp/vendor_cryptopp/gfpcrypt.h diff --git a/vendor/cryptopp/cryptopp/gost.cpp b/vendor/cryptopp/vendor_cryptopp/gost.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/gost.cpp rename to vendor/cryptopp/vendor_cryptopp/gost.cpp diff --git a/vendor/cryptopp/cryptopp/gost.h b/vendor/cryptopp/vendor_cryptopp/gost.h similarity index 100% rename from vendor/cryptopp/cryptopp/gost.h rename to vendor/cryptopp/vendor_cryptopp/gost.h diff --git a/vendor/cryptopp/cryptopp/gzip.cpp b/vendor/cryptopp/vendor_cryptopp/gzip.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/gzip.cpp rename to vendor/cryptopp/vendor_cryptopp/gzip.cpp diff --git a/vendor/cryptopp/cryptopp/gzip.h b/vendor/cryptopp/vendor_cryptopp/gzip.h similarity index 100% rename from vendor/cryptopp/cryptopp/gzip.h rename to vendor/cryptopp/vendor_cryptopp/gzip.h diff --git a/vendor/cryptopp/cryptopp/hashfwd.h b/vendor/cryptopp/vendor_cryptopp/hashfwd.h similarity index 100% rename from vendor/cryptopp/cryptopp/hashfwd.h rename to vendor/cryptopp/vendor_cryptopp/hashfwd.h diff --git a/vendor/cryptopp/cryptopp/hex.cpp b/vendor/cryptopp/vendor_cryptopp/hex.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/hex.cpp rename to vendor/cryptopp/vendor_cryptopp/hex.cpp diff --git a/vendor/cryptopp/cryptopp/hex.h b/vendor/cryptopp/vendor_cryptopp/hex.h similarity index 100% rename from vendor/cryptopp/cryptopp/hex.h rename to vendor/cryptopp/vendor_cryptopp/hex.h diff --git a/vendor/cryptopp/cryptopp/hkdf.h b/vendor/cryptopp/vendor_cryptopp/hkdf.h similarity index 100% rename from vendor/cryptopp/cryptopp/hkdf.h rename to vendor/cryptopp/vendor_cryptopp/hkdf.h diff --git a/vendor/cryptopp/cryptopp/hmac.cpp b/vendor/cryptopp/vendor_cryptopp/hmac.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/hmac.cpp rename to vendor/cryptopp/vendor_cryptopp/hmac.cpp diff --git a/vendor/cryptopp/cryptopp/hmac.h b/vendor/cryptopp/vendor_cryptopp/hmac.h similarity index 100% rename from vendor/cryptopp/cryptopp/hmac.h rename to vendor/cryptopp/vendor_cryptopp/hmac.h diff --git a/vendor/cryptopp/cryptopp/hmqv.h b/vendor/cryptopp/vendor_cryptopp/hmqv.h similarity index 100% rename from vendor/cryptopp/cryptopp/hmqv.h rename to vendor/cryptopp/vendor_cryptopp/hmqv.h diff --git a/vendor/cryptopp/cryptopp/hrtimer.cpp b/vendor/cryptopp/vendor_cryptopp/hrtimer.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/hrtimer.cpp rename to vendor/cryptopp/vendor_cryptopp/hrtimer.cpp diff --git a/vendor/cryptopp/cryptopp/hrtimer.h b/vendor/cryptopp/vendor_cryptopp/hrtimer.h similarity index 100% rename from vendor/cryptopp/cryptopp/hrtimer.h rename to vendor/cryptopp/vendor_cryptopp/hrtimer.h diff --git a/vendor/cryptopp/cryptopp/ida.cpp b/vendor/cryptopp/vendor_cryptopp/ida.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/ida.cpp rename to vendor/cryptopp/vendor_cryptopp/ida.cpp diff --git a/vendor/cryptopp/cryptopp/ida.h b/vendor/cryptopp/vendor_cryptopp/ida.h similarity index 100% rename from vendor/cryptopp/cryptopp/ida.h rename to vendor/cryptopp/vendor_cryptopp/ida.h diff --git a/vendor/cryptopp/cryptopp/idea.cpp b/vendor/cryptopp/vendor_cryptopp/idea.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/idea.cpp rename to vendor/cryptopp/vendor_cryptopp/idea.cpp diff --git a/vendor/cryptopp/cryptopp/idea.h b/vendor/cryptopp/vendor_cryptopp/idea.h similarity index 100% rename from vendor/cryptopp/cryptopp/idea.h rename to vendor/cryptopp/vendor_cryptopp/idea.h diff --git a/vendor/cryptopp/cryptopp/integer.cpp b/vendor/cryptopp/vendor_cryptopp/integer.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/integer.cpp rename to vendor/cryptopp/vendor_cryptopp/integer.cpp diff --git a/vendor/cryptopp/cryptopp/integer.h b/vendor/cryptopp/vendor_cryptopp/integer.h similarity index 100% rename from vendor/cryptopp/cryptopp/integer.h rename to vendor/cryptopp/vendor_cryptopp/integer.h diff --git a/vendor/cryptopp/cryptopp/iterhash.cpp b/vendor/cryptopp/vendor_cryptopp/iterhash.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/iterhash.cpp rename to vendor/cryptopp/vendor_cryptopp/iterhash.cpp diff --git a/vendor/cryptopp/cryptopp/iterhash.h b/vendor/cryptopp/vendor_cryptopp/iterhash.h similarity index 100% rename from vendor/cryptopp/cryptopp/iterhash.h rename to vendor/cryptopp/vendor_cryptopp/iterhash.h diff --git a/vendor/cryptopp/cryptopp/kalyna.cpp b/vendor/cryptopp/vendor_cryptopp/kalyna.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/kalyna.cpp rename to vendor/cryptopp/vendor_cryptopp/kalyna.cpp diff --git a/vendor/cryptopp/cryptopp/kalyna.h b/vendor/cryptopp/vendor_cryptopp/kalyna.h similarity index 100% rename from vendor/cryptopp/cryptopp/kalyna.h rename to vendor/cryptopp/vendor_cryptopp/kalyna.h diff --git a/vendor/cryptopp/cryptopp/kalynatab.cpp b/vendor/cryptopp/vendor_cryptopp/kalynatab.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/kalynatab.cpp rename to vendor/cryptopp/vendor_cryptopp/kalynatab.cpp diff --git a/vendor/cryptopp/cryptopp/keccak.cpp b/vendor/cryptopp/vendor_cryptopp/keccak.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/keccak.cpp rename to vendor/cryptopp/vendor_cryptopp/keccak.cpp diff --git a/vendor/cryptopp/cryptopp/keccak.h b/vendor/cryptopp/vendor_cryptopp/keccak.h similarity index 100% rename from vendor/cryptopp/cryptopp/keccak.h rename to vendor/cryptopp/vendor_cryptopp/keccak.h diff --git a/vendor/cryptopp/cryptopp/lubyrack.h b/vendor/cryptopp/vendor_cryptopp/lubyrack.h similarity index 100% rename from vendor/cryptopp/cryptopp/lubyrack.h rename to vendor/cryptopp/vendor_cryptopp/lubyrack.h diff --git a/vendor/cryptopp/cryptopp/luc.cpp b/vendor/cryptopp/vendor_cryptopp/luc.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/luc.cpp rename to vendor/cryptopp/vendor_cryptopp/luc.cpp diff --git a/vendor/cryptopp/cryptopp/luc.h b/vendor/cryptopp/vendor_cryptopp/luc.h similarity index 100% rename from vendor/cryptopp/cryptopp/luc.h rename to vendor/cryptopp/vendor_cryptopp/luc.h diff --git a/vendor/cryptopp/cryptopp/mars.cpp b/vendor/cryptopp/vendor_cryptopp/mars.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/mars.cpp rename to vendor/cryptopp/vendor_cryptopp/mars.cpp diff --git a/vendor/cryptopp/cryptopp/mars.h b/vendor/cryptopp/vendor_cryptopp/mars.h similarity index 100% rename from vendor/cryptopp/cryptopp/mars.h rename to vendor/cryptopp/vendor_cryptopp/mars.h diff --git a/vendor/cryptopp/cryptopp/marss.cpp b/vendor/cryptopp/vendor_cryptopp/marss.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/marss.cpp rename to vendor/cryptopp/vendor_cryptopp/marss.cpp diff --git a/vendor/cryptopp/cryptopp/md2.cpp b/vendor/cryptopp/vendor_cryptopp/md2.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/md2.cpp rename to vendor/cryptopp/vendor_cryptopp/md2.cpp diff --git a/vendor/cryptopp/cryptopp/md2.h b/vendor/cryptopp/vendor_cryptopp/md2.h similarity index 100% rename from vendor/cryptopp/cryptopp/md2.h rename to vendor/cryptopp/vendor_cryptopp/md2.h diff --git a/vendor/cryptopp/cryptopp/md4.cpp b/vendor/cryptopp/vendor_cryptopp/md4.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/md4.cpp rename to vendor/cryptopp/vendor_cryptopp/md4.cpp diff --git a/vendor/cryptopp/cryptopp/md4.h b/vendor/cryptopp/vendor_cryptopp/md4.h similarity index 100% rename from vendor/cryptopp/cryptopp/md4.h rename to vendor/cryptopp/vendor_cryptopp/md4.h diff --git a/vendor/cryptopp/cryptopp/md5.cpp b/vendor/cryptopp/vendor_cryptopp/md5.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/md5.cpp rename to vendor/cryptopp/vendor_cryptopp/md5.cpp diff --git a/vendor/cryptopp/cryptopp/md5.h b/vendor/cryptopp/vendor_cryptopp/md5.h similarity index 100% rename from vendor/cryptopp/cryptopp/md5.h rename to vendor/cryptopp/vendor_cryptopp/md5.h diff --git a/vendor/cryptopp/cryptopp/mdc.h b/vendor/cryptopp/vendor_cryptopp/mdc.h similarity index 100% rename from vendor/cryptopp/cryptopp/mdc.h rename to vendor/cryptopp/vendor_cryptopp/mdc.h diff --git a/vendor/cryptopp/cryptopp/mersenne.h b/vendor/cryptopp/vendor_cryptopp/mersenne.h similarity index 100% rename from vendor/cryptopp/cryptopp/mersenne.h rename to vendor/cryptopp/vendor_cryptopp/mersenne.h diff --git a/vendor/cryptopp/cryptopp/misc.cpp b/vendor/cryptopp/vendor_cryptopp/misc.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/misc.cpp rename to vendor/cryptopp/vendor_cryptopp/misc.cpp diff --git a/vendor/cryptopp/cryptopp/misc.h b/vendor/cryptopp/vendor_cryptopp/misc.h similarity index 100% rename from vendor/cryptopp/cryptopp/misc.h rename to vendor/cryptopp/vendor_cryptopp/misc.h diff --git a/vendor/cryptopp/cryptopp/modarith.h b/vendor/cryptopp/vendor_cryptopp/modarith.h similarity index 100% rename from vendor/cryptopp/cryptopp/modarith.h rename to vendor/cryptopp/vendor_cryptopp/modarith.h diff --git a/vendor/cryptopp/cryptopp/modes.cpp b/vendor/cryptopp/vendor_cryptopp/modes.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/modes.cpp rename to vendor/cryptopp/vendor_cryptopp/modes.cpp diff --git a/vendor/cryptopp/cryptopp/modes.h b/vendor/cryptopp/vendor_cryptopp/modes.h similarity index 100% rename from vendor/cryptopp/cryptopp/modes.h rename to vendor/cryptopp/vendor_cryptopp/modes.h diff --git a/vendor/cryptopp/cryptopp/modexppc.h b/vendor/cryptopp/vendor_cryptopp/modexppc.h similarity index 100% rename from vendor/cryptopp/cryptopp/modexppc.h rename to vendor/cryptopp/vendor_cryptopp/modexppc.h diff --git a/vendor/cryptopp/cryptopp/mqueue.cpp b/vendor/cryptopp/vendor_cryptopp/mqueue.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/mqueue.cpp rename to vendor/cryptopp/vendor_cryptopp/mqueue.cpp diff --git a/vendor/cryptopp/cryptopp/mqueue.h b/vendor/cryptopp/vendor_cryptopp/mqueue.h similarity index 100% rename from vendor/cryptopp/cryptopp/mqueue.h rename to vendor/cryptopp/vendor_cryptopp/mqueue.h diff --git a/vendor/cryptopp/cryptopp/mqv.cpp b/vendor/cryptopp/vendor_cryptopp/mqv.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/mqv.cpp rename to vendor/cryptopp/vendor_cryptopp/mqv.cpp diff --git a/vendor/cryptopp/cryptopp/mqv.h b/vendor/cryptopp/vendor_cryptopp/mqv.h similarity index 100% rename from vendor/cryptopp/cryptopp/mqv.h rename to vendor/cryptopp/vendor_cryptopp/mqv.h diff --git a/vendor/cryptopp/cryptopp/naclite.h b/vendor/cryptopp/vendor_cryptopp/naclite.h similarity index 100% rename from vendor/cryptopp/cryptopp/naclite.h rename to vendor/cryptopp/vendor_cryptopp/naclite.h diff --git a/vendor/cryptopp/cryptopp/nbtheory.cpp b/vendor/cryptopp/vendor_cryptopp/nbtheory.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/nbtheory.cpp rename to vendor/cryptopp/vendor_cryptopp/nbtheory.cpp diff --git a/vendor/cryptopp/cryptopp/nbtheory.h b/vendor/cryptopp/vendor_cryptopp/nbtheory.h similarity index 100% rename from vendor/cryptopp/cryptopp/nbtheory.h rename to vendor/cryptopp/vendor_cryptopp/nbtheory.h diff --git a/vendor/cryptopp/cryptopp/neon-simd.cpp b/vendor/cryptopp/vendor_cryptopp/neon-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/neon-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/neon-simd.cpp diff --git a/vendor/cryptopp/cryptopp/network.cpp b/vendor/cryptopp/vendor_cryptopp/network.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/network.cpp rename to vendor/cryptopp/vendor_cryptopp/network.cpp diff --git a/vendor/cryptopp/cryptopp/network.h b/vendor/cryptopp/vendor_cryptopp/network.h similarity index 100% rename from vendor/cryptopp/cryptopp/network.h rename to vendor/cryptopp/vendor_cryptopp/network.h diff --git a/vendor/cryptopp/cryptopp/nr.h b/vendor/cryptopp/vendor_cryptopp/nr.h similarity index 100% rename from vendor/cryptopp/cryptopp/nr.h rename to vendor/cryptopp/vendor_cryptopp/nr.h diff --git a/vendor/cryptopp/cryptopp/oaep.cpp b/vendor/cryptopp/vendor_cryptopp/oaep.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/oaep.cpp rename to vendor/cryptopp/vendor_cryptopp/oaep.cpp diff --git a/vendor/cryptopp/cryptopp/oaep.h b/vendor/cryptopp/vendor_cryptopp/oaep.h similarity index 100% rename from vendor/cryptopp/cryptopp/oaep.h rename to vendor/cryptopp/vendor_cryptopp/oaep.h diff --git a/vendor/cryptopp/cryptopp/oids.h b/vendor/cryptopp/vendor_cryptopp/oids.h similarity index 100% rename from vendor/cryptopp/cryptopp/oids.h rename to vendor/cryptopp/vendor_cryptopp/oids.h diff --git a/vendor/cryptopp/cryptopp/osrng.cpp b/vendor/cryptopp/vendor_cryptopp/osrng.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/osrng.cpp rename to vendor/cryptopp/vendor_cryptopp/osrng.cpp diff --git a/vendor/cryptopp/cryptopp/osrng.h b/vendor/cryptopp/vendor_cryptopp/osrng.h similarity index 100% rename from vendor/cryptopp/cryptopp/osrng.h rename to vendor/cryptopp/vendor_cryptopp/osrng.h diff --git a/vendor/cryptopp/cryptopp/ossig.h b/vendor/cryptopp/vendor_cryptopp/ossig.h similarity index 100% rename from vendor/cryptopp/cryptopp/ossig.h rename to vendor/cryptopp/vendor_cryptopp/ossig.h diff --git a/vendor/cryptopp/cryptopp/padlkrng.cpp b/vendor/cryptopp/vendor_cryptopp/padlkrng.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/padlkrng.cpp rename to vendor/cryptopp/vendor_cryptopp/padlkrng.cpp diff --git a/vendor/cryptopp/cryptopp/padlkrng.h b/vendor/cryptopp/vendor_cryptopp/padlkrng.h similarity index 100% rename from vendor/cryptopp/cryptopp/padlkrng.h rename to vendor/cryptopp/vendor_cryptopp/padlkrng.h diff --git a/vendor/cryptopp/cryptopp/panama.cpp b/vendor/cryptopp/vendor_cryptopp/panama.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/panama.cpp rename to vendor/cryptopp/vendor_cryptopp/panama.cpp diff --git a/vendor/cryptopp/cryptopp/panama.h b/vendor/cryptopp/vendor_cryptopp/panama.h similarity index 100% rename from vendor/cryptopp/cryptopp/panama.h rename to vendor/cryptopp/vendor_cryptopp/panama.h diff --git a/vendor/cryptopp/cryptopp/pch.cpp b/vendor/cryptopp/vendor_cryptopp/pch.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/pch.cpp rename to vendor/cryptopp/vendor_cryptopp/pch.cpp diff --git a/vendor/cryptopp/cryptopp/pch.h b/vendor/cryptopp/vendor_cryptopp/pch.h similarity index 100% rename from vendor/cryptopp/cryptopp/pch.h rename to vendor/cryptopp/vendor_cryptopp/pch.h diff --git a/vendor/cryptopp/cryptopp/pkcspad.cpp b/vendor/cryptopp/vendor_cryptopp/pkcspad.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/pkcspad.cpp rename to vendor/cryptopp/vendor_cryptopp/pkcspad.cpp diff --git a/vendor/cryptopp/cryptopp/pkcspad.h b/vendor/cryptopp/vendor_cryptopp/pkcspad.h similarity index 100% rename from vendor/cryptopp/cryptopp/pkcspad.h rename to vendor/cryptopp/vendor_cryptopp/pkcspad.h diff --git a/vendor/cryptopp/cryptopp/poly1305.cpp b/vendor/cryptopp/vendor_cryptopp/poly1305.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/poly1305.cpp rename to vendor/cryptopp/vendor_cryptopp/poly1305.cpp diff --git a/vendor/cryptopp/cryptopp/poly1305.h b/vendor/cryptopp/vendor_cryptopp/poly1305.h similarity index 100% rename from vendor/cryptopp/cryptopp/poly1305.h rename to vendor/cryptopp/vendor_cryptopp/poly1305.h diff --git a/vendor/cryptopp/cryptopp/polynomi.cpp b/vendor/cryptopp/vendor_cryptopp/polynomi.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/polynomi.cpp rename to vendor/cryptopp/vendor_cryptopp/polynomi.cpp diff --git a/vendor/cryptopp/cryptopp/polynomi.h b/vendor/cryptopp/vendor_cryptopp/polynomi.h similarity index 100% rename from vendor/cryptopp/cryptopp/polynomi.h rename to vendor/cryptopp/vendor_cryptopp/polynomi.h diff --git a/vendor/cryptopp/cryptopp/ppc-simd.cpp b/vendor/cryptopp/vendor_cryptopp/ppc-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/ppc-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/ppc-simd.cpp diff --git a/vendor/cryptopp/cryptopp/ppc-simd.h b/vendor/cryptopp/vendor_cryptopp/ppc-simd.h similarity index 100% rename from vendor/cryptopp/cryptopp/ppc-simd.h rename to vendor/cryptopp/vendor_cryptopp/ppc-simd.h diff --git a/vendor/cryptopp/cryptopp/pssr.cpp b/vendor/cryptopp/vendor_cryptopp/pssr.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/pssr.cpp rename to vendor/cryptopp/vendor_cryptopp/pssr.cpp diff --git a/vendor/cryptopp/cryptopp/pssr.h b/vendor/cryptopp/vendor_cryptopp/pssr.h similarity index 100% rename from vendor/cryptopp/cryptopp/pssr.h rename to vendor/cryptopp/vendor_cryptopp/pssr.h diff --git a/vendor/cryptopp/cryptopp/pubkey.cpp b/vendor/cryptopp/vendor_cryptopp/pubkey.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/pubkey.cpp rename to vendor/cryptopp/vendor_cryptopp/pubkey.cpp diff --git a/vendor/cryptopp/cryptopp/pubkey.h b/vendor/cryptopp/vendor_cryptopp/pubkey.h similarity index 100% rename from vendor/cryptopp/cryptopp/pubkey.h rename to vendor/cryptopp/vendor_cryptopp/pubkey.h diff --git a/vendor/cryptopp/cryptopp/pwdbased.h b/vendor/cryptopp/vendor_cryptopp/pwdbased.h similarity index 100% rename from vendor/cryptopp/cryptopp/pwdbased.h rename to vendor/cryptopp/vendor_cryptopp/pwdbased.h diff --git a/vendor/cryptopp/cryptopp/queue.cpp b/vendor/cryptopp/vendor_cryptopp/queue.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/queue.cpp rename to vendor/cryptopp/vendor_cryptopp/queue.cpp diff --git a/vendor/cryptopp/cryptopp/queue.h b/vendor/cryptopp/vendor_cryptopp/queue.h similarity index 100% rename from vendor/cryptopp/cryptopp/queue.h rename to vendor/cryptopp/vendor_cryptopp/queue.h diff --git a/vendor/cryptopp/cryptopp/rabin.cpp b/vendor/cryptopp/vendor_cryptopp/rabin.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rabin.cpp rename to vendor/cryptopp/vendor_cryptopp/rabin.cpp diff --git a/vendor/cryptopp/cryptopp/rabin.h b/vendor/cryptopp/vendor_cryptopp/rabin.h similarity index 100% rename from vendor/cryptopp/cryptopp/rabin.h rename to vendor/cryptopp/vendor_cryptopp/rabin.h diff --git a/vendor/cryptopp/cryptopp/randpool.cpp b/vendor/cryptopp/vendor_cryptopp/randpool.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/randpool.cpp rename to vendor/cryptopp/vendor_cryptopp/randpool.cpp diff --git a/vendor/cryptopp/cryptopp/randpool.h b/vendor/cryptopp/vendor_cryptopp/randpool.h similarity index 100% rename from vendor/cryptopp/cryptopp/randpool.h rename to vendor/cryptopp/vendor_cryptopp/randpool.h diff --git a/vendor/cryptopp/cryptopp/rc2.cpp b/vendor/cryptopp/vendor_cryptopp/rc2.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rc2.cpp rename to vendor/cryptopp/vendor_cryptopp/rc2.cpp diff --git a/vendor/cryptopp/cryptopp/rc2.h b/vendor/cryptopp/vendor_cryptopp/rc2.h similarity index 100% rename from vendor/cryptopp/cryptopp/rc2.h rename to vendor/cryptopp/vendor_cryptopp/rc2.h diff --git a/vendor/cryptopp/cryptopp/rc5.cpp b/vendor/cryptopp/vendor_cryptopp/rc5.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rc5.cpp rename to vendor/cryptopp/vendor_cryptopp/rc5.cpp diff --git a/vendor/cryptopp/cryptopp/rc5.h b/vendor/cryptopp/vendor_cryptopp/rc5.h similarity index 100% rename from vendor/cryptopp/cryptopp/rc5.h rename to vendor/cryptopp/vendor_cryptopp/rc5.h diff --git a/vendor/cryptopp/cryptopp/rc6.cpp b/vendor/cryptopp/vendor_cryptopp/rc6.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rc6.cpp rename to vendor/cryptopp/vendor_cryptopp/rc6.cpp diff --git a/vendor/cryptopp/cryptopp/rc6.h b/vendor/cryptopp/vendor_cryptopp/rc6.h similarity index 100% rename from vendor/cryptopp/cryptopp/rc6.h rename to vendor/cryptopp/vendor_cryptopp/rc6.h diff --git a/vendor/cryptopp/cryptopp/rdrand-masm.cmd b/vendor/cryptopp/vendor_cryptopp/rdrand-masm.cmd similarity index 100% rename from vendor/cryptopp/cryptopp/rdrand-masm.cmd rename to vendor/cryptopp/vendor_cryptopp/rdrand-masm.cmd diff --git a/vendor/cryptopp/cryptopp/rdrand-nasm.sh b/vendor/cryptopp/vendor_cryptopp/rdrand-nasm.sh similarity index 100% rename from vendor/cryptopp/cryptopp/rdrand-nasm.sh rename to vendor/cryptopp/vendor_cryptopp/rdrand-nasm.sh diff --git a/vendor/cryptopp/cryptopp/rdrand.asm b/vendor/cryptopp/vendor_cryptopp/rdrand.asm similarity index 100% rename from vendor/cryptopp/cryptopp/rdrand.asm rename to vendor/cryptopp/vendor_cryptopp/rdrand.asm diff --git a/vendor/cryptopp/cryptopp/rdrand.cpp b/vendor/cryptopp/vendor_cryptopp/rdrand.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rdrand.cpp rename to vendor/cryptopp/vendor_cryptopp/rdrand.cpp diff --git a/vendor/cryptopp/cryptopp/rdrand.h b/vendor/cryptopp/vendor_cryptopp/rdrand.h similarity index 100% rename from vendor/cryptopp/cryptopp/rdrand.h rename to vendor/cryptopp/vendor_cryptopp/rdrand.h diff --git a/vendor/cryptopp/cryptopp/rdrand.s b/vendor/cryptopp/vendor_cryptopp/rdrand.s similarity index 100% rename from vendor/cryptopp/cryptopp/rdrand.s rename to vendor/cryptopp/vendor_cryptopp/rdrand.s diff --git a/vendor/cryptopp/cryptopp/rdtables.cpp b/vendor/cryptopp/vendor_cryptopp/rdtables.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rdtables.cpp rename to vendor/cryptopp/vendor_cryptopp/rdtables.cpp diff --git a/vendor/cryptopp/cryptopp/regtest1.cpp b/vendor/cryptopp/vendor_cryptopp/regtest1.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/regtest1.cpp rename to vendor/cryptopp/vendor_cryptopp/regtest1.cpp diff --git a/vendor/cryptopp/cryptopp/regtest2.cpp b/vendor/cryptopp/vendor_cryptopp/regtest2.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/regtest2.cpp rename to vendor/cryptopp/vendor_cryptopp/regtest2.cpp diff --git a/vendor/cryptopp/cryptopp/regtest3.cpp b/vendor/cryptopp/vendor_cryptopp/regtest3.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/regtest3.cpp rename to vendor/cryptopp/vendor_cryptopp/regtest3.cpp diff --git a/vendor/cryptopp/cryptopp/resource.h b/vendor/cryptopp/vendor_cryptopp/resource.h similarity index 100% rename from vendor/cryptopp/cryptopp/resource.h rename to vendor/cryptopp/vendor_cryptopp/resource.h diff --git a/vendor/cryptopp/cryptopp/rijndael-simd.cpp b/vendor/cryptopp/vendor_cryptopp/rijndael-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rijndael-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/rijndael-simd.cpp diff --git a/vendor/cryptopp/cryptopp/rijndael.cpp b/vendor/cryptopp/vendor_cryptopp/rijndael.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rijndael.cpp rename to vendor/cryptopp/vendor_cryptopp/rijndael.cpp diff --git a/vendor/cryptopp/cryptopp/rijndael.h b/vendor/cryptopp/vendor_cryptopp/rijndael.h similarity index 100% rename from vendor/cryptopp/cryptopp/rijndael.h rename to vendor/cryptopp/vendor_cryptopp/rijndael.h diff --git a/vendor/cryptopp/cryptopp/ripemd.cpp b/vendor/cryptopp/vendor_cryptopp/ripemd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/ripemd.cpp rename to vendor/cryptopp/vendor_cryptopp/ripemd.cpp diff --git a/vendor/cryptopp/cryptopp/ripemd.h b/vendor/cryptopp/vendor_cryptopp/ripemd.h similarity index 100% rename from vendor/cryptopp/cryptopp/ripemd.h rename to vendor/cryptopp/vendor_cryptopp/ripemd.h diff --git a/vendor/cryptopp/cryptopp/rng.cpp b/vendor/cryptopp/vendor_cryptopp/rng.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rng.cpp rename to vendor/cryptopp/vendor_cryptopp/rng.cpp diff --git a/vendor/cryptopp/cryptopp/rng.h b/vendor/cryptopp/vendor_cryptopp/rng.h similarity index 100% rename from vendor/cryptopp/cryptopp/rng.h rename to vendor/cryptopp/vendor_cryptopp/rng.h diff --git a/vendor/cryptopp/cryptopp/rsa.cpp b/vendor/cryptopp/vendor_cryptopp/rsa.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rsa.cpp rename to vendor/cryptopp/vendor_cryptopp/rsa.cpp diff --git a/vendor/cryptopp/cryptopp/rsa.h b/vendor/cryptopp/vendor_cryptopp/rsa.h similarity index 100% rename from vendor/cryptopp/cryptopp/rsa.h rename to vendor/cryptopp/vendor_cryptopp/rsa.h diff --git a/vendor/cryptopp/cryptopp/rw.cpp b/vendor/cryptopp/vendor_cryptopp/rw.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/rw.cpp rename to vendor/cryptopp/vendor_cryptopp/rw.cpp diff --git a/vendor/cryptopp/cryptopp/rw.h b/vendor/cryptopp/vendor_cryptopp/rw.h similarity index 100% rename from vendor/cryptopp/cryptopp/rw.h rename to vendor/cryptopp/vendor_cryptopp/rw.h diff --git a/vendor/cryptopp/cryptopp/safer.cpp b/vendor/cryptopp/vendor_cryptopp/safer.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/safer.cpp rename to vendor/cryptopp/vendor_cryptopp/safer.cpp diff --git a/vendor/cryptopp/cryptopp/safer.h b/vendor/cryptopp/vendor_cryptopp/safer.h similarity index 100% rename from vendor/cryptopp/cryptopp/safer.h rename to vendor/cryptopp/vendor_cryptopp/safer.h diff --git a/vendor/cryptopp/cryptopp/salsa.cpp b/vendor/cryptopp/vendor_cryptopp/salsa.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/salsa.cpp rename to vendor/cryptopp/vendor_cryptopp/salsa.cpp diff --git a/vendor/cryptopp/cryptopp/salsa.h b/vendor/cryptopp/vendor_cryptopp/salsa.h similarity index 100% rename from vendor/cryptopp/cryptopp/salsa.h rename to vendor/cryptopp/vendor_cryptopp/salsa.h diff --git a/vendor/cryptopp/cryptopp/scrypt.cpp b/vendor/cryptopp/vendor_cryptopp/scrypt.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/scrypt.cpp rename to vendor/cryptopp/vendor_cryptopp/scrypt.cpp diff --git a/vendor/cryptopp/cryptopp/scrypt.h b/vendor/cryptopp/vendor_cryptopp/scrypt.h similarity index 100% rename from vendor/cryptopp/cryptopp/scrypt.h rename to vendor/cryptopp/vendor_cryptopp/scrypt.h diff --git a/vendor/cryptopp/cryptopp/seal.cpp b/vendor/cryptopp/vendor_cryptopp/seal.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/seal.cpp rename to vendor/cryptopp/vendor_cryptopp/seal.cpp diff --git a/vendor/cryptopp/cryptopp/seal.h b/vendor/cryptopp/vendor_cryptopp/seal.h similarity index 100% rename from vendor/cryptopp/cryptopp/seal.h rename to vendor/cryptopp/vendor_cryptopp/seal.h diff --git a/vendor/cryptopp/cryptopp/secblock.h b/vendor/cryptopp/vendor_cryptopp/secblock.h similarity index 100% rename from vendor/cryptopp/cryptopp/secblock.h rename to vendor/cryptopp/vendor_cryptopp/secblock.h diff --git a/vendor/cryptopp/cryptopp/seckey.h b/vendor/cryptopp/vendor_cryptopp/seckey.h similarity index 100% rename from vendor/cryptopp/cryptopp/seckey.h rename to vendor/cryptopp/vendor_cryptopp/seckey.h diff --git a/vendor/cryptopp/cryptopp/seed.cpp b/vendor/cryptopp/vendor_cryptopp/seed.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/seed.cpp rename to vendor/cryptopp/vendor_cryptopp/seed.cpp diff --git a/vendor/cryptopp/cryptopp/seed.h b/vendor/cryptopp/vendor_cryptopp/seed.h similarity index 100% rename from vendor/cryptopp/cryptopp/seed.h rename to vendor/cryptopp/vendor_cryptopp/seed.h diff --git a/vendor/cryptopp/cryptopp/serpent.cpp b/vendor/cryptopp/vendor_cryptopp/serpent.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/serpent.cpp rename to vendor/cryptopp/vendor_cryptopp/serpent.cpp diff --git a/vendor/cryptopp/cryptopp/serpent.h b/vendor/cryptopp/vendor_cryptopp/serpent.h similarity index 100% rename from vendor/cryptopp/cryptopp/serpent.h rename to vendor/cryptopp/vendor_cryptopp/serpent.h diff --git a/vendor/cryptopp/cryptopp/serpentp.h b/vendor/cryptopp/vendor_cryptopp/serpentp.h similarity index 100% rename from vendor/cryptopp/cryptopp/serpentp.h rename to vendor/cryptopp/vendor_cryptopp/serpentp.h diff --git a/vendor/cryptopp/cryptopp/setenv-android.sh b/vendor/cryptopp/vendor_cryptopp/setenv-android.sh similarity index 100% rename from vendor/cryptopp/cryptopp/setenv-android.sh rename to vendor/cryptopp/vendor_cryptopp/setenv-android.sh diff --git a/vendor/cryptopp/cryptopp/setenv-embedded.sh b/vendor/cryptopp/vendor_cryptopp/setenv-embedded.sh similarity index 100% rename from vendor/cryptopp/cryptopp/setenv-embedded.sh rename to vendor/cryptopp/vendor_cryptopp/setenv-embedded.sh diff --git a/vendor/cryptopp/cryptopp/setenv-ios.sh b/vendor/cryptopp/vendor_cryptopp/setenv-ios.sh similarity index 100% rename from vendor/cryptopp/cryptopp/setenv-ios.sh rename to vendor/cryptopp/vendor_cryptopp/setenv-ios.sh diff --git a/vendor/cryptopp/cryptopp/sha-simd.cpp b/vendor/cryptopp/vendor_cryptopp/sha-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/sha-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/sha-simd.cpp diff --git a/vendor/cryptopp/cryptopp/sha.cpp b/vendor/cryptopp/vendor_cryptopp/sha.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/sha.cpp rename to vendor/cryptopp/vendor_cryptopp/sha.cpp diff --git a/vendor/cryptopp/cryptopp/sha.h b/vendor/cryptopp/vendor_cryptopp/sha.h similarity index 100% rename from vendor/cryptopp/cryptopp/sha.h rename to vendor/cryptopp/vendor_cryptopp/sha.h diff --git a/vendor/cryptopp/cryptopp/sha3.cpp b/vendor/cryptopp/vendor_cryptopp/sha3.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/sha3.cpp rename to vendor/cryptopp/vendor_cryptopp/sha3.cpp diff --git a/vendor/cryptopp/cryptopp/sha3.h b/vendor/cryptopp/vendor_cryptopp/sha3.h similarity index 100% rename from vendor/cryptopp/cryptopp/sha3.h rename to vendor/cryptopp/vendor_cryptopp/sha3.h diff --git a/vendor/cryptopp/cryptopp/shacal2-simd.cpp b/vendor/cryptopp/vendor_cryptopp/shacal2-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/shacal2-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/shacal2-simd.cpp diff --git a/vendor/cryptopp/cryptopp/shacal2.cpp b/vendor/cryptopp/vendor_cryptopp/shacal2.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/shacal2.cpp rename to vendor/cryptopp/vendor_cryptopp/shacal2.cpp diff --git a/vendor/cryptopp/cryptopp/shacal2.h b/vendor/cryptopp/vendor_cryptopp/shacal2.h similarity index 100% rename from vendor/cryptopp/cryptopp/shacal2.h rename to vendor/cryptopp/vendor_cryptopp/shacal2.h diff --git a/vendor/cryptopp/cryptopp/shark.cpp b/vendor/cryptopp/vendor_cryptopp/shark.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/shark.cpp rename to vendor/cryptopp/vendor_cryptopp/shark.cpp diff --git a/vendor/cryptopp/cryptopp/shark.h b/vendor/cryptopp/vendor_cryptopp/shark.h similarity index 100% rename from vendor/cryptopp/cryptopp/shark.h rename to vendor/cryptopp/vendor_cryptopp/shark.h diff --git a/vendor/cryptopp/cryptopp/sharkbox.cpp b/vendor/cryptopp/vendor_cryptopp/sharkbox.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/sharkbox.cpp rename to vendor/cryptopp/vendor_cryptopp/sharkbox.cpp diff --git a/vendor/cryptopp/cryptopp/simon-simd.cpp b/vendor/cryptopp/vendor_cryptopp/simon-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/simon-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/simon-simd.cpp diff --git a/vendor/cryptopp/cryptopp/simon.cpp b/vendor/cryptopp/vendor_cryptopp/simon.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/simon.cpp rename to vendor/cryptopp/vendor_cryptopp/simon.cpp diff --git a/vendor/cryptopp/cryptopp/simon.h b/vendor/cryptopp/vendor_cryptopp/simon.h similarity index 100% rename from vendor/cryptopp/cryptopp/simon.h rename to vendor/cryptopp/vendor_cryptopp/simon.h diff --git a/vendor/cryptopp/cryptopp/simple.cpp b/vendor/cryptopp/vendor_cryptopp/simple.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/simple.cpp rename to vendor/cryptopp/vendor_cryptopp/simple.cpp diff --git a/vendor/cryptopp/cryptopp/simple.h b/vendor/cryptopp/vendor_cryptopp/simple.h similarity index 100% rename from vendor/cryptopp/cryptopp/simple.h rename to vendor/cryptopp/vendor_cryptopp/simple.h diff --git a/vendor/cryptopp/cryptopp/siphash.h b/vendor/cryptopp/vendor_cryptopp/siphash.h similarity index 100% rename from vendor/cryptopp/cryptopp/siphash.h rename to vendor/cryptopp/vendor_cryptopp/siphash.h diff --git a/vendor/cryptopp/cryptopp/skipjack.cpp b/vendor/cryptopp/vendor_cryptopp/skipjack.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/skipjack.cpp rename to vendor/cryptopp/vendor_cryptopp/skipjack.cpp diff --git a/vendor/cryptopp/cryptopp/skipjack.h b/vendor/cryptopp/vendor_cryptopp/skipjack.h similarity index 100% rename from vendor/cryptopp/cryptopp/skipjack.h rename to vendor/cryptopp/vendor_cryptopp/skipjack.h diff --git a/vendor/cryptopp/cryptopp/sm3.cpp b/vendor/cryptopp/vendor_cryptopp/sm3.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/sm3.cpp rename to vendor/cryptopp/vendor_cryptopp/sm3.cpp diff --git a/vendor/cryptopp/cryptopp/sm3.h b/vendor/cryptopp/vendor_cryptopp/sm3.h similarity index 100% rename from vendor/cryptopp/cryptopp/sm3.h rename to vendor/cryptopp/vendor_cryptopp/sm3.h diff --git a/vendor/cryptopp/cryptopp/sm4.cpp b/vendor/cryptopp/vendor_cryptopp/sm4.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/sm4.cpp rename to vendor/cryptopp/vendor_cryptopp/sm4.cpp diff --git a/vendor/cryptopp/cryptopp/sm4.h b/vendor/cryptopp/vendor_cryptopp/sm4.h similarity index 100% rename from vendor/cryptopp/cryptopp/sm4.h rename to vendor/cryptopp/vendor_cryptopp/sm4.h diff --git a/vendor/cryptopp/cryptopp/smartptr.h b/vendor/cryptopp/vendor_cryptopp/smartptr.h similarity index 100% rename from vendor/cryptopp/cryptopp/smartptr.h rename to vendor/cryptopp/vendor_cryptopp/smartptr.h diff --git a/vendor/cryptopp/cryptopp/socketft.cpp b/vendor/cryptopp/vendor_cryptopp/socketft.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/socketft.cpp rename to vendor/cryptopp/vendor_cryptopp/socketft.cpp diff --git a/vendor/cryptopp/cryptopp/socketft.h b/vendor/cryptopp/vendor_cryptopp/socketft.h similarity index 100% rename from vendor/cryptopp/cryptopp/socketft.h rename to vendor/cryptopp/vendor_cryptopp/socketft.h diff --git a/vendor/cryptopp/cryptopp/sosemanuk.cpp b/vendor/cryptopp/vendor_cryptopp/sosemanuk.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/sosemanuk.cpp rename to vendor/cryptopp/vendor_cryptopp/sosemanuk.cpp diff --git a/vendor/cryptopp/cryptopp/sosemanuk.h b/vendor/cryptopp/vendor_cryptopp/sosemanuk.h similarity index 100% rename from vendor/cryptopp/cryptopp/sosemanuk.h rename to vendor/cryptopp/vendor_cryptopp/sosemanuk.h diff --git a/vendor/cryptopp/cryptopp/speck-simd.cpp b/vendor/cryptopp/vendor_cryptopp/speck-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/speck-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/speck-simd.cpp diff --git a/vendor/cryptopp/cryptopp/speck.cpp b/vendor/cryptopp/vendor_cryptopp/speck.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/speck.cpp rename to vendor/cryptopp/vendor_cryptopp/speck.cpp diff --git a/vendor/cryptopp/cryptopp/speck.h b/vendor/cryptopp/vendor_cryptopp/speck.h similarity index 100% rename from vendor/cryptopp/cryptopp/speck.h rename to vendor/cryptopp/vendor_cryptopp/speck.h diff --git a/vendor/cryptopp/cryptopp/square.cpp b/vendor/cryptopp/vendor_cryptopp/square.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/square.cpp rename to vendor/cryptopp/vendor_cryptopp/square.cpp diff --git a/vendor/cryptopp/cryptopp/square.h b/vendor/cryptopp/vendor_cryptopp/square.h similarity index 100% rename from vendor/cryptopp/cryptopp/square.h rename to vendor/cryptopp/vendor_cryptopp/square.h diff --git a/vendor/cryptopp/cryptopp/squaretb.cpp b/vendor/cryptopp/vendor_cryptopp/squaretb.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/squaretb.cpp rename to vendor/cryptopp/vendor_cryptopp/squaretb.cpp diff --git a/vendor/cryptopp/cryptopp/sse-simd.cpp b/vendor/cryptopp/vendor_cryptopp/sse-simd.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/sse-simd.cpp rename to vendor/cryptopp/vendor_cryptopp/sse-simd.cpp diff --git a/vendor/cryptopp/cryptopp/stdcpp.h b/vendor/cryptopp/vendor_cryptopp/stdcpp.h similarity index 100% rename from vendor/cryptopp/cryptopp/stdcpp.h rename to vendor/cryptopp/vendor_cryptopp/stdcpp.h diff --git a/vendor/cryptopp/cryptopp/strciphr.cpp b/vendor/cryptopp/vendor_cryptopp/strciphr.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/strciphr.cpp rename to vendor/cryptopp/vendor_cryptopp/strciphr.cpp diff --git a/vendor/cryptopp/cryptopp/strciphr.h b/vendor/cryptopp/vendor_cryptopp/strciphr.h similarity index 100% rename from vendor/cryptopp/cryptopp/strciphr.h rename to vendor/cryptopp/vendor_cryptopp/strciphr.h diff --git a/vendor/cryptopp/cryptopp/tea.cpp b/vendor/cryptopp/vendor_cryptopp/tea.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/tea.cpp rename to vendor/cryptopp/vendor_cryptopp/tea.cpp diff --git a/vendor/cryptopp/cryptopp/tea.h b/vendor/cryptopp/vendor_cryptopp/tea.h similarity index 100% rename from vendor/cryptopp/cryptopp/tea.h rename to vendor/cryptopp/vendor_cryptopp/tea.h diff --git a/vendor/cryptopp/cryptopp/test.cpp b/vendor/cryptopp/vendor_cryptopp/test.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/test.cpp rename to vendor/cryptopp/vendor_cryptopp/test.cpp diff --git a/vendor/cryptopp/cryptopp/tftables.cpp b/vendor/cryptopp/vendor_cryptopp/tftables.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/tftables.cpp rename to vendor/cryptopp/vendor_cryptopp/tftables.cpp diff --git a/vendor/cryptopp/cryptopp/threefish.cpp b/vendor/cryptopp/vendor_cryptopp/threefish.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/threefish.cpp rename to vendor/cryptopp/vendor_cryptopp/threefish.cpp diff --git a/vendor/cryptopp/cryptopp/threefish.h b/vendor/cryptopp/vendor_cryptopp/threefish.h similarity index 100% rename from vendor/cryptopp/cryptopp/threefish.h rename to vendor/cryptopp/vendor_cryptopp/threefish.h diff --git a/vendor/cryptopp/cryptopp/tiger.cpp b/vendor/cryptopp/vendor_cryptopp/tiger.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/tiger.cpp rename to vendor/cryptopp/vendor_cryptopp/tiger.cpp diff --git a/vendor/cryptopp/cryptopp/tiger.h b/vendor/cryptopp/vendor_cryptopp/tiger.h similarity index 100% rename from vendor/cryptopp/cryptopp/tiger.h rename to vendor/cryptopp/vendor_cryptopp/tiger.h diff --git a/vendor/cryptopp/cryptopp/tigertab.cpp b/vendor/cryptopp/vendor_cryptopp/tigertab.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/tigertab.cpp rename to vendor/cryptopp/vendor_cryptopp/tigertab.cpp diff --git a/vendor/cryptopp/cryptopp/trap.h b/vendor/cryptopp/vendor_cryptopp/trap.h similarity index 100% rename from vendor/cryptopp/cryptopp/trap.h rename to vendor/cryptopp/vendor_cryptopp/trap.h diff --git a/vendor/cryptopp/cryptopp/trdlocal.cpp b/vendor/cryptopp/vendor_cryptopp/trdlocal.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/trdlocal.cpp rename to vendor/cryptopp/vendor_cryptopp/trdlocal.cpp diff --git a/vendor/cryptopp/cryptopp/trdlocal.h b/vendor/cryptopp/vendor_cryptopp/trdlocal.h similarity index 100% rename from vendor/cryptopp/cryptopp/trdlocal.h rename to vendor/cryptopp/vendor_cryptopp/trdlocal.h diff --git a/vendor/cryptopp/cryptopp/trunhash.h b/vendor/cryptopp/vendor_cryptopp/trunhash.h similarity index 100% rename from vendor/cryptopp/cryptopp/trunhash.h rename to vendor/cryptopp/vendor_cryptopp/trunhash.h diff --git a/vendor/cryptopp/cryptopp/ttmac.cpp b/vendor/cryptopp/vendor_cryptopp/ttmac.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/ttmac.cpp rename to vendor/cryptopp/vendor_cryptopp/ttmac.cpp diff --git a/vendor/cryptopp/cryptopp/ttmac.h b/vendor/cryptopp/vendor_cryptopp/ttmac.h similarity index 100% rename from vendor/cryptopp/cryptopp/ttmac.h rename to vendor/cryptopp/vendor_cryptopp/ttmac.h diff --git a/vendor/cryptopp/cryptopp/tweetnacl.cpp b/vendor/cryptopp/vendor_cryptopp/tweetnacl.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/tweetnacl.cpp rename to vendor/cryptopp/vendor_cryptopp/tweetnacl.cpp diff --git a/vendor/cryptopp/cryptopp/tweetnacl.h b/vendor/cryptopp/vendor_cryptopp/tweetnacl.h similarity index 100% rename from vendor/cryptopp/cryptopp/tweetnacl.h rename to vendor/cryptopp/vendor_cryptopp/tweetnacl.h diff --git a/vendor/cryptopp/cryptopp/twofish.cpp b/vendor/cryptopp/vendor_cryptopp/twofish.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/twofish.cpp rename to vendor/cryptopp/vendor_cryptopp/twofish.cpp diff --git a/vendor/cryptopp/cryptopp/twofish.h b/vendor/cryptopp/vendor_cryptopp/twofish.h similarity index 100% rename from vendor/cryptopp/cryptopp/twofish.h rename to vendor/cryptopp/vendor_cryptopp/twofish.h diff --git a/vendor/cryptopp/cryptopp/validat0.cpp b/vendor/cryptopp/vendor_cryptopp/validat0.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/validat0.cpp rename to vendor/cryptopp/vendor_cryptopp/validat0.cpp diff --git a/vendor/cryptopp/cryptopp/validat1.cpp b/vendor/cryptopp/vendor_cryptopp/validat1.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/validat1.cpp rename to vendor/cryptopp/vendor_cryptopp/validat1.cpp diff --git a/vendor/cryptopp/cryptopp/validat2.cpp b/vendor/cryptopp/vendor_cryptopp/validat2.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/validat2.cpp rename to vendor/cryptopp/vendor_cryptopp/validat2.cpp diff --git a/vendor/cryptopp/cryptopp/validat3.cpp b/vendor/cryptopp/vendor_cryptopp/validat3.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/validat3.cpp rename to vendor/cryptopp/vendor_cryptopp/validat3.cpp diff --git a/vendor/cryptopp/cryptopp/validat4.cpp b/vendor/cryptopp/vendor_cryptopp/validat4.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/validat4.cpp rename to vendor/cryptopp/vendor_cryptopp/validat4.cpp diff --git a/vendor/cryptopp/cryptopp/validate.h b/vendor/cryptopp/vendor_cryptopp/validate.h similarity index 100% rename from vendor/cryptopp/cryptopp/validate.h rename to vendor/cryptopp/vendor_cryptopp/validate.h diff --git a/vendor/cryptopp/cryptopp/vc60.zip b/vendor/cryptopp/vendor_cryptopp/vc60.zip similarity index 100% rename from vendor/cryptopp/cryptopp/vc60.zip rename to vendor/cryptopp/vendor_cryptopp/vc60.zip diff --git a/vendor/cryptopp/cryptopp/vmac.cpp b/vendor/cryptopp/vendor_cryptopp/vmac.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/vmac.cpp rename to vendor/cryptopp/vendor_cryptopp/vmac.cpp diff --git a/vendor/cryptopp/cryptopp/vmac.h b/vendor/cryptopp/vendor_cryptopp/vmac.h similarity index 100% rename from vendor/cryptopp/cryptopp/vmac.h rename to vendor/cryptopp/vendor_cryptopp/vmac.h diff --git a/vendor/cryptopp/cryptopp/vs2005.zip b/vendor/cryptopp/vendor_cryptopp/vs2005.zip similarity index 100% rename from vendor/cryptopp/cryptopp/vs2005.zip rename to vendor/cryptopp/vendor_cryptopp/vs2005.zip diff --git a/vendor/cryptopp/cryptopp/wait.cpp b/vendor/cryptopp/vendor_cryptopp/wait.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/wait.cpp rename to vendor/cryptopp/vendor_cryptopp/wait.cpp diff --git a/vendor/cryptopp/cryptopp/wait.h b/vendor/cryptopp/vendor_cryptopp/wait.h similarity index 100% rename from vendor/cryptopp/cryptopp/wait.h rename to vendor/cryptopp/vendor_cryptopp/wait.h diff --git a/vendor/cryptopp/cryptopp/wake.cpp b/vendor/cryptopp/vendor_cryptopp/wake.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/wake.cpp rename to vendor/cryptopp/vendor_cryptopp/wake.cpp diff --git a/vendor/cryptopp/cryptopp/wake.h b/vendor/cryptopp/vendor_cryptopp/wake.h similarity index 100% rename from vendor/cryptopp/cryptopp/wake.h rename to vendor/cryptopp/vendor_cryptopp/wake.h diff --git a/vendor/cryptopp/cryptopp/whrlpool.cpp b/vendor/cryptopp/vendor_cryptopp/whrlpool.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/whrlpool.cpp rename to vendor/cryptopp/vendor_cryptopp/whrlpool.cpp diff --git a/vendor/cryptopp/cryptopp/whrlpool.h b/vendor/cryptopp/vendor_cryptopp/whrlpool.h similarity index 100% rename from vendor/cryptopp/cryptopp/whrlpool.h rename to vendor/cryptopp/vendor_cryptopp/whrlpool.h diff --git a/vendor/cryptopp/cryptopp/winpipes.cpp b/vendor/cryptopp/vendor_cryptopp/winpipes.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/winpipes.cpp rename to vendor/cryptopp/vendor_cryptopp/winpipes.cpp diff --git a/vendor/cryptopp/cryptopp/winpipes.h b/vendor/cryptopp/vendor_cryptopp/winpipes.h similarity index 100% rename from vendor/cryptopp/cryptopp/winpipes.h rename to vendor/cryptopp/vendor_cryptopp/winpipes.h diff --git a/vendor/cryptopp/cryptopp/words.h b/vendor/cryptopp/vendor_cryptopp/words.h similarity index 100% rename from vendor/cryptopp/cryptopp/words.h rename to vendor/cryptopp/vendor_cryptopp/words.h diff --git a/vendor/cryptopp/cryptopp/x64dll.asm b/vendor/cryptopp/vendor_cryptopp/x64dll.asm similarity index 100% rename from vendor/cryptopp/cryptopp/x64dll.asm rename to vendor/cryptopp/vendor_cryptopp/x64dll.asm diff --git a/vendor/cryptopp/cryptopp/x64masm.asm b/vendor/cryptopp/vendor_cryptopp/x64masm.asm similarity index 100% rename from vendor/cryptopp/cryptopp/x64masm.asm rename to vendor/cryptopp/vendor_cryptopp/x64masm.asm diff --git a/vendor/cryptopp/cryptopp/xtr.cpp b/vendor/cryptopp/vendor_cryptopp/xtr.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/xtr.cpp rename to vendor/cryptopp/vendor_cryptopp/xtr.cpp diff --git a/vendor/cryptopp/cryptopp/xtr.h b/vendor/cryptopp/vendor_cryptopp/xtr.h similarity index 100% rename from vendor/cryptopp/cryptopp/xtr.h rename to vendor/cryptopp/vendor_cryptopp/xtr.h diff --git a/vendor/cryptopp/cryptopp/xtrcrypt.cpp b/vendor/cryptopp/vendor_cryptopp/xtrcrypt.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/xtrcrypt.cpp rename to vendor/cryptopp/vendor_cryptopp/xtrcrypt.cpp diff --git a/vendor/cryptopp/cryptopp/xtrcrypt.h b/vendor/cryptopp/vendor_cryptopp/xtrcrypt.h similarity index 100% rename from vendor/cryptopp/cryptopp/xtrcrypt.h rename to vendor/cryptopp/vendor_cryptopp/xtrcrypt.h diff --git a/vendor/cryptopp/cryptopp/zdeflate.cpp b/vendor/cryptopp/vendor_cryptopp/zdeflate.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/zdeflate.cpp rename to vendor/cryptopp/vendor_cryptopp/zdeflate.cpp diff --git a/vendor/cryptopp/cryptopp/zdeflate.h b/vendor/cryptopp/vendor_cryptopp/zdeflate.h similarity index 100% rename from vendor/cryptopp/cryptopp/zdeflate.h rename to vendor/cryptopp/vendor_cryptopp/zdeflate.h diff --git a/vendor/cryptopp/cryptopp/zinflate.cpp b/vendor/cryptopp/vendor_cryptopp/zinflate.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/zinflate.cpp rename to vendor/cryptopp/vendor_cryptopp/zinflate.cpp diff --git a/vendor/cryptopp/cryptopp/zinflate.h b/vendor/cryptopp/vendor_cryptopp/zinflate.h similarity index 100% rename from vendor/cryptopp/cryptopp/zinflate.h rename to vendor/cryptopp/vendor_cryptopp/zinflate.h diff --git a/vendor/cryptopp/cryptopp/zlib.cpp b/vendor/cryptopp/vendor_cryptopp/zlib.cpp similarity index 100% rename from vendor/cryptopp/cryptopp/zlib.cpp rename to vendor/cryptopp/vendor_cryptopp/zlib.cpp diff --git a/vendor/cryptopp/cryptopp/zlib.h b/vendor/cryptopp/vendor_cryptopp/zlib.h similarity index 100% rename from vendor/cryptopp/cryptopp/zlib.h rename to vendor/cryptopp/vendor_cryptopp/zlib.h