aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-05 18:04:52 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-05 18:04:52 -0500
commitdddbc837cc927b18fccc1b01677a4e2dbed7e2b1 (patch)
tree16c32cc4c1f9bae447bb8b84f02319070faec97e
parent31f4047b3d945555b8c1aefccb1038a0919266e6 (diff)
downloadcryptography-dddbc837cc927b18fccc1b01677a4e2dbed7e2b1.tar.gz
cryptography-dddbc837cc927b18fccc1b01677a4e2dbed7e2b1.tar.bz2
cryptography-dddbc837cc927b18fccc1b01677a4e2dbed7e2b1.zip
too many rsas makes me rsa blind
-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 *);
"""