[Learning from Crypto++] (Day 1) configuration details

来源:互联网 发布:mysql主从好处 编辑:程序博客网 时间:2024/04/30 08:25

The Crypto++ 5.6.3 is available in the GitHub (https://github.com/weidai11/cryptopp). 

The file config.h setup the setting under different compilers.

typedef unsigned short word16;typedef unsigned int word32;#if defined(_MSC_VER) || defined(__BORLANDC__)typedef unsigned __int64 word64;#define W64LIT(x) x##ui64#elsetypedef unsigned long long word64;#define W64LIT(x) x##ULL#endif


_MSC_VER is defined under the Visio Studio.



0 0
原创粉丝点击