From 31f4047b3d945555b8c1aefccb1038a0919266e6 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sat, 5 Oct 2013 18:00:08 -0500 Subject: remove local variable names from function declarations --- cryptography/bindings/openssl/rsa.py | 6 +++--- 1 file 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 *); """ -- cgit v1.2.3