commit | 0d2aec53b165cd32e66dce647f3642a4eb4bc4bc | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Wed May 31 04:26:27 2017 -0400 |
committer | Hynek Schlawack <hs@ox.cx> | Wed May 31 10:26:27 2017 +0200 |
tree | abd9bd6286b00d83ea588914c5fe68eb88652439 | |
parent | d52975cef3a36e18552aeb23de7c06aa73d76454 [diff] [blame] |
Use the normal OpenSSL function instead of the crypto wrapper (#629) We don’t support 0.9.8 anymore.
diff --git a/src/OpenSSL/crypto.py b/src/OpenSSL/crypto.py index 98a7c78..3ef0e9b 100644 --- a/src/OpenSSL/crypto.py +++ b/src/OpenSSL/crypto.py
@@ -309,7 +309,7 @@ :return: The type of the key. """ - return _lib.Cryptography_EVP_PKEY_id(self._pkey) + return _lib.EVP_PKEY_id(self._pkey) def bits(self): """