summaryrefslogtreecommitdiff
path: root/src/Blowfish.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blowfish.c')
-rw-r--r--src/Blowfish.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/Blowfish.c b/src/Blowfish.c
index 9985728..96f8628 100644
--- a/src/Blowfish.c
+++ b/src/Blowfish.c
@@ -26,22 +26,11 @@
* http://www.schneier.com/paper-blowfish-fse.html
*/
-#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 "Blowfish-tables.h"
#include <assert.h>
#include <string.h>
-#include "Blowfish-tables.h"
-
#define MODULE_NAME _Blowfish
#define BLOCK_SIZE 8 /* 64-bit block size */
#define KEY_SIZE 0 /* variable key size */