summaryrefslogtreecommitdiff
path: root/src/RIPEMD160.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/RIPEMD160.c')
-rw-r--r--src/RIPEMD160.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/RIPEMD160.c b/src/RIPEMD160.c
index b12773c..67fec96 100644
--- a/src/RIPEMD160.c
+++ b/src/RIPEMD160.c
@@ -43,21 +43,9 @@
* "RIPEMD-160 is big-bit-endian, little-byte-endian, and left-justified."
*/
-#include "Python.h"
-#include "config.h"
-#if HAVE_STDINT_H
-# include <stdint.h>
-#elif HAVE_INTTYPES_H
-# include <inttypes.h>
-#elif HAVE_SYS_INTTYPES_H
-# include <sys/inttypes.h>
-#else
-# error "stdint.h and inttypes.h not found"
-#endif
-
+#include "pycrypto_common.h"
#include <assert.h>
#include <string.h>
-#include "pycrypto_compat.h"
#define RIPEMD160_DIGEST_SIZE 20
#define BLOCK_SIZE 64