Dear All, I have downloaded Crypto 5.6 and tried to use it with VS 2010 (RC). The build is not without errors but a slight modification makes it work:
a) pubkey.h line 243: return HashIdentifier(NULL, 0); -> return HashIdentifier((const byte*)NULL, 0); b) zdeflate.cpp line 389 #if defined(_STDEXT_BEGIN) && !(defined(_MSC_VER) && _MSC_VER < 1400) && !defined(_STLPORT_VERSION) -> #if defined(_STDEXT_BEGIN) && !(defined(_MSC_VER) && (_MSC_VER < 1400 || _MSC_VER >= 1600)) && !defined(_STLPORT_VERSION) So you may incorporate it into the next release version :-) Regards Josef -- You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to [email protected]. More information about Crypto++ and this group is available at http://www.cryptopp.com.
