aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cryptography/bindings/openssl/rsa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/bindings/openssl/rsa.py b/cryptography/bindings/openssl/rsa.py
index 49cde721..75afb578 100644
--- a/cryptography/bindings/openssl/rsa.py
+++ b/cryptography/bindings/openssl/rsa.py
@@ -23,7 +23,7 @@ typedef ... BN_GENCB;
FUNCTIONS = """
RSA* RSA_new();
void RSA_free(RSA *);
-int RSA_generate_key_ex(RSA *rsa, int, BIGNUM *, BN_GENCB *);
+int RSA_generate_key_ex(RSA *, int, BIGNUM *, BN_GENCB *);
int RSA_check_key(const RSA *);
"""