Use OpenSSL & zlib in precompiled headers

This commit is contained in:
Mikhail Titov 2015-11-11 13:48:49 -06:00
parent 4a2fcb9deb
commit cc2816aaf5

View File

@ -48,20 +48,20 @@
#include <boost/program_options/parsers.hpp> #include <boost/program_options/parsers.hpp>
#include <boost/algorithm/string.hpp> #include <boost/algorithm/string.hpp>
#include <cryptopp/aes.h> #include <zlib.h>
#include <cryptopp/adler32.h>
#include <cryptopp/asn.h> #include <openssl/ssl.h>
#include <cryptopp/base64.h> #include <openssl/err.h>
#include <cryptopp/crc.h> #include <openssl/bn.h>
#include <cryptopp/dh.h> #include <openssl/dh.h>
#include <cryptopp/dsa.h> #include <openssl/aes.h>
#include <cryptopp/eccrypto.h> #include <openssl/sha.h>
#include <cryptopp/gzip.h> #include <openssl/md5.h>
#include <cryptopp/hmac.h> #include <openssl/rand.h>
#include <cryptopp/integer.h> #include <openssl/dsa.h>
#include <cryptopp/modes.h> #include <openssl/ec.h>
#include <cryptopp/osrng.h> #include <openssl/ecdsa.h>
#include <cryptopp/sha.h> #include <openssl/rsa.h>
#include <cryptopp/zinflate.h> #include <openssl/evp.h>
#endif #endif