--- a/src/blockstore/implementations/compressing/compressors/Gzip.cpp 2022-08-25 22:14:05.481898162 +0400 +++ b/src/blockstore/implementations/compressing/compressors/Gzip.cpp 2022-08-25 22:17:49.606653292 +0400 @@ -1,5 +1,5 @@ #include "Gzip.h" -#include +#include using cpputils::Data; --- a/src/cpp-utils/crypto/hash/Hash.cpp 2022-08-25 22:14:05.482898159 +0400 +++ b/src/cpp-utils/crypto/hash/Hash.cpp 2022-08-25 22:18:07.131800277 +0400 @@ -1,6 +1,6 @@ #include "Hash.h" #include -#include +#include using cpputils::Random; using CryptoPP::SHA512; --- a/src/cpp-utils/crypto/kdf/Scrypt.cpp 2022-08-25 22:14:05.482898159 +0400 +++ b/src/cpp-utils/crypto/kdf/Scrypt.cpp 2022-08-25 22:18:17.754889373 +0400 @@ -1,5 +1,5 @@ #include "Scrypt.h" -#include +#include using std::string; --- a/src/cpp-utils/crypto/symmetric/CFB_Cipher.h 2022-08-25 22:14:05.482898159 +0400 +++ b/src/cpp-utils/crypto/symmetric/CFB_Cipher.h 2022-08-25 22:18:28.524979704 +0400 @@ -6,7 +6,7 @@ #include "../../data/Data.h" #include "../../random/Random.h" #include -#include +#include #include "Cipher.h" #include "EncryptionKey.h" --- a/src/cpp-utils/crypto/symmetric/ciphers.h 2022-08-25 22:14:05.482898159 +0400 +++ b/src/cpp-utils/crypto/symmetric/ciphers.h 2022-08-25 22:18:52.181178110 +0400 @@ -2,12 +2,12 @@ #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 +#include #include "GCM_Cipher.h" #include "CFB_Cipher.h" --- a/src/cpp-utils/crypto/symmetric/GCM_Cipher.h 2022-08-25 22:14:05.482898159 +0400 +++ b/src/cpp-utils/crypto/symmetric/GCM_Cipher.h 2022-08-25 22:18:38.836066183 +0400 @@ -3,7 +3,7 @@ #define MESSMER_CPPUTILS_CRYPTO_SYMMETRIC_GCMCIPHER_H_ #include "AEAD_Cipher.h" -#include +#include namespace cpputils { --- a/src/cpp-utils/data/Data.cpp 2022-08-25 22:14:05.482898159 +0400 +++ b/src/cpp-utils/data/Data.cpp 2022-08-25 22:19:09.349322106 +0400 @@ -1,6 +1,6 @@ #include "Data.h" #include -#include +#include using std::istream; using std::ofstream; --- a/src/cpp-utils/data/FixedSizeData.h 2022-08-25 22:14:05.482898159 +0400 +++ b/src/cpp-utils/data/FixedSizeData.h 2022-08-25 22:19:19.103403916 +0400 @@ -2,7 +2,7 @@ #ifndef MESSMER_CPPUTILS_DATA_FIXEDSIZEDATA_H_ #define MESSMER_CPPUTILS_DATA_FIXEDSIZEDATA_H_ -#include +#include #include #include #include --- a/src/cpp-utils/random/OSRandomGenerator.h 2022-08-25 22:14:05.483898156 +0400 +++ b/src/cpp-utils/random/OSRandomGenerator.h 2022-08-25 22:19:29.602491973 +0400 @@ -3,7 +3,7 @@ #define MESSMER_CPPUTILS_RANDOM_OSRANDOMGENERATOR_H #include "RandomGenerator.h" -#include +#include namespace cpputils { class OSRandomGenerator final : public RandomGenerator { --- a/src/cpp-utils/random/RandomGeneratorThread.h 2022-08-25 22:14:05.484898153 +0400 +++ b/src/cpp-utils/random/RandomGeneratorThread.h 2022-08-25 22:19:36.713551613 +0400 @@ -4,7 +4,7 @@ #include "../thread/LoopThread.h" #include "ThreadsafeRandomDataBuffer.h" -#include +#include namespace cpputils { //TODO Test diff -Naurp0 -U3 cryfs-0.11.2/src/cryfs/impl/localstate/BasedirMetadata.cpp cryfs-0.11.2-mine/src/cryfs/impl/localstate/BasedirMetadata.cpp --- a/src/cryfs/impl/localstate/BasedirMetadata.cpp 2022-08-25 22:14:05.487898144 +0400 +++ b/src/cryfs/impl/localstate/BasedirMetadata.cpp 2022-08-25 22:19:46.722635560 +0400 @@ -1,7 +1,7 @@ #include "BasedirMetadata.h" #include #include -#include +#include #include #include "LocalStateDir.h" #include --- a/test/cryfs/impl/config/CompatibilityTest.cpp 2022-08-25 22:14:05.493898126 +0400 +++ b/test/cryfs/impl/config/CompatibilityTest.cpp 2022-08-25 22:19:54.589701542 +0400 @@ -2,7 +2,7 @@ #include #include #include -#include +#include #include #include #include --- a/vendor/CMakeLists.txt 2022-08-25 22:14:05.497898115 +0400 +++ b/vendor/CMakeLists.txt 2022-08-25 22:20:11.176840657 +0400 @@ -1,2 +1 @@ add_subdirectory(googletest) -add_subdirectory(cryptopp)