Move the crypto extension module aside to make way for an incremental rewrite in Python
diff --git a/OpenSSL/crypto/crypto.h b/OpenSSL/crypto/crypto.h
index 4006e71..d0dba6b 100644
--- a/OpenSSL/crypto/crypto.h
+++ b/OpenSSL/crypto/crypto.h
@@ -118,7 +118,7 @@
#define import_crypto() \
{ \
- PyObject *crypto_module = PyImport_ImportModule("OpenSSL.crypto"); \
+ PyObject *crypto_module = PyImport_ImportModule("OpenSSL.xcrypto"); \
if (crypto_module != NULL) { \
PyObject *crypto_dict, *crypto_api_object; \
crypto_dict = PyModule_GetDict(crypto_module); \