diff options
-rw-r--r-- | src/_cffi_src/openssl/callbacks.py | 4 | ||||
-rw-r--r-- | src/cryptography/hazmat/bindings/openssl/binding.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/_cffi_src/openssl/callbacks.py b/src/_cffi_src/openssl/callbacks.py index e215ed4e..13c4e10c 100644 --- a/src/_cffi_src/openssl/callbacks.py +++ b/src/_cffi_src/openssl/callbacks.py @@ -33,7 +33,7 @@ typedef struct { """ FUNCTIONS = """ -int _setup_ssl_threads(void); +int Cryptography_setup_ssl_threads(void); int Cryptography_pem_password_cb(char *, int, int, void *); """ @@ -120,7 +120,7 @@ static void init_mutexes(void) { } -int _setup_ssl_threads(void) { +int Cryptography_setup_ssl_threads(void) { if (_ssl_locks == NULL) { _ssl_locks_count = CRYPTO_num_locks(); _ssl_locks = calloc(_ssl_locks_count, sizeof(Cryptography_mutex)); diff --git a/src/cryptography/hazmat/bindings/openssl/binding.py b/src/cryptography/hazmat/bindings/openssl/binding.py index 7d528adb..81cf547a 100644 --- a/src/cryptography/hazmat/bindings/openssl/binding.py +++ b/src/cryptography/hazmat/bindings/openssl/binding.py @@ -145,7 +145,7 @@ class Binding(object): # If nothing else has setup a locking callback already, we set up # our own - res = lib._setup_ssl_threads() + res = lib.Cryptography_setup_ssl_threads() _openssl_assert(cls.lib, res == 1) |