[cryptopp-users] Re: cryptopp610 compilation issue in Visual Studio 2010

2018-03-27 Thread Jeffrey Walton
On Tuesday, March 27, 2018 at 7:10:08 PM UTC-4, Jeffrey Walton wrote: > > > On Saturday, March 10, 2018 at 10:19:29 AM UTC-5, Jeffrey Walton wrote: >> >> >> On Saturday, March 10, 2018 at 8:09:05 AM UTC-5, Jeemon Joy wrote: >>> >>> First of all, I would like to thank the owners and developers of

[cryptopp-users] Re: cryptopp610 compilation issue in Visual Studio 2010

2018-03-27 Thread Jeffrey Walton
On Saturday, March 10, 2018 at 10:19:29 AM UTC-5, Jeffrey Walton wrote: > > > On Saturday, March 10, 2018 at 8:09:05 AM UTC-5, Jeemon Joy wrote: >> >> First of all, I would like to thank the owners and developers of >> cryptopp. It really helps to understand and learn more about cryptography. >>

[cryptopp-users] Re: cryptopp610 compilation issue in Visual Studio 2010

2018-03-11 Thread Andrew Marlow
The Microsoft compilers have a notorious area for incompatibilities and that is where types such as uint64_t are defined. Often I have seen a project create its own header for the portable integer types and in that header there are various ifdef includes to resolve the issue for the various ver

[cryptopp-users] Re: cryptopp610 compilation issue in Visual Studio 2010

2018-03-10 Thread Jeemon Joy
HI Jeff, Compilation errors in Microsoft Visual Studio 2010, Version 10.0.30319.1 Error 1: Compilation error of aria.cpp Error 1 error C2065: 'uint32_t' : undeclared identifier G:\Programs\References\CPP\cryptopp610\aria.cpp 224 1 cryptlib Error 2 error C2059: syntax error : ')' G:\Programs\R

[cryptopp-users] Re: cryptopp610 compilation issue in Visual Studio 2010

2018-03-10 Thread Jeemon Joy
Hi Jeff, You are welcome. Still, aria.cpp is not compilable after adding stdcpp.h to it. Need to check on // uintptr_t and ptrdiff_t #if (__cplusplus < 201103L) && (!defined(_MSC_VER) || (_MSC_VER >= 1700)) # include #elif defined(_MSC_VER) && (_MSC_VER < 1700) # include #e

[cryptopp-users] Re: cryptopp610 compilation issue in Visual Studio 2010

2018-03-10 Thread Jeffrey Walton
On Saturday, March 10, 2018 at 8:09:05 AM UTC-5, Jeemon Joy wrote: > > First of all, I would like to thank the owners and developers of cryptopp. > It really helps to understand and learn more about cryptography. > For me, cryptopp610 was not compiling in Visual Studio 2010. It is due to > uint