diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-12-29 20:56:23 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-12-29 20:56:23 -0600 |
commit | 718bb42f9e9692fd7be4084bfb16d0deb08d3cc3 (patch) | |
tree | afe6b81ecc0511020c57a14e79ce0bde95174ade | |
parent | 3c661e02397072746dd85397b300076a61fba58c (diff) | |
download | cryptography-718bb42f9e9692fd7be4084bfb16d0deb08d3cc3.tar.gz cryptography-718bb42f9e9692fd7be4084bfb16d0deb08d3cc3.tar.bz2 cryptography-718bb42f9e9692fd7be4084bfb16d0deb08d3cc3.zip |
missed some param names (C style fix)
-rw-r--r-- | cryptography/hazmat/backends/openssl/engine.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/backends/openssl/engine.py b/cryptography/hazmat/backends/openssl/engine.py index dc9c2748..390bfde1 100644 --- a/cryptography/hazmat/backends/openssl/engine.py +++ b/cryptography/hazmat/backends/openssl/engine.py @@ -65,8 +65,8 @@ ENGINE *ENGINE_get_default_ECDH(void); ENGINE *ENGINE_get_default_ECDSA(void); ENGINE *ENGINE_get_default_DH(void); ENGINE *ENGINE_get_default_RAND(void); -ENGINE *ENGINE_get_cipher_engine(int nid); -ENGINE *ENGINE_get_digest_engine(int nid); +ENGINE *ENGINE_get_cipher_engine(int); +ENGINE *ENGINE_get_digest_engine(int); int ENGINE_set_default_RSA(ENGINE *); int ENGINE_set_default_DSA(ENGINE *); int ENGINE_set_default_ECDH(ENGINE *); |