aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-05 18:00:08 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-05 18:00:08 -0500
commit31f4047b3d945555b8c1aefccb1038a0919266e6 (patch)
tree08ef807a6451ed3f7467ecb53ed8d4ee8fc66b48
parent1f33553b8d33770572d4982e3862ed5bc52ea9c7 (diff)
downloadcryptography-31f4047b3d945555b8c1aefccb1038a0919266e6.tar.gz
cryptography-31f4047b3d945555b8c1aefccb1038a0919266e6.tar.bz2
cryptography-31f4047b3d945555b8c1aefccb1038a0919266e6.zip
remove local variable names from function declarations
-rw-r--r--cryptography/bindings/openssl/rsa.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cryptography/bindings/openssl/rsa.py b/cryptography/bindings/openssl/rsa.py
index 03892135..49cde721 100644
--- a/cryptography/bindings/openssl/rsa.py
+++ b/cryptography/bindings/openssl/rsa.py
@@ -21,9 +21,9 @@ typedef ... BN_GENCB;
"""
FUNCTIONS = """
-RSA * RSA_new(void);
-void RSA_free(RSA *r);
-int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
+RSA* RSA_new();
+void RSA_free(RSA *);
+int RSA_generate_key_ex(RSA *rsa, int, BIGNUM *, BN_GENCB *);
int RSA_check_key(const RSA *);
"""