Show More
@@ -13,7 +13,14 b' extern "C" {' | |||
|
13 | 13 | #endif |
|
14 | 14 | |
|
15 | 15 | #ifndef SHA1DC_NO_STANDARD_INCLUDES |
|
16 | /* PY27 this can be changed to a straight #include once Python 2.7 is | |
|
17 | dropped, since this is for MSVC 2008 support. */ | |
|
18 | #if !defined(_MSC_VER) || _MSC_VER >= 1600 | |
|
16 | 19 | #include <stdint.h> |
|
20 | #else | |
|
21 | typedef unsigned __int32 uint32_t; | |
|
22 | typedef unsigned __int64 uint64_t; | |
|
23 | #endif | |
|
17 | 24 | #endif |
|
18 | 25 | |
|
19 | 26 | /* sha-1 compression function that takes an already expanded message, and additionally store intermediate states */ |
General Comments 0
You need to be logged in to leave comments.
Login now