diff options
Diffstat (limited to 'src/common/Cryptography/RSA.cpp')
-rw-r--r-- | src/common/Cryptography/RSA.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/Cryptography/RSA.cpp b/src/common/Cryptography/RSA.cpp index 969d00dae0f..db880b642eb 100644 --- a/src/common/Cryptography/RSA.cpp +++ b/src/common/Cryptography/RSA.cpp @@ -17,6 +17,10 @@ #include "RSA.h" #include <openssl/pem.h> +#include <algorithm> +#include <iterator> +#include <memory> +#include <vector> #define CHECK_AND_DECLARE_FUNCTION_TYPE(name, publicKey, privateKey) \ static_assert(std::is_same<decltype(&publicKey), decltype(&privateKey)>::value, \ |