diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-10-05 18:09:39 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-10-05 18:09:39 -0500 |
commit | 64c0fd9271c2716f11f529b86148f73b84cad420 (patch) | |
tree | d895522f2831fd0084ecb0ce2b6c6258ceef36d8 | |
parent | dddbc837cc927b18fccc1b01677a4e2dbed7e2b1 (diff) | |
download | cryptography-64c0fd9271c2716f11f529b86148f73b84cad420.tar.gz cryptography-64c0fd9271c2716f11f529b86148f73b84cad420.tar.bz2 cryptography-64c0fd9271c2716f11f529b86148f73b84cad420.zip |
jokers to the left, pointers to the right
-rw-r--r-- | cryptography/bindings/openssl/rsa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/bindings/openssl/rsa.py b/cryptography/bindings/openssl/rsa.py index 75afb578..c8bf1cc0 100644 --- a/cryptography/bindings/openssl/rsa.py +++ b/cryptography/bindings/openssl/rsa.py @@ -21,7 +21,7 @@ typedef ... BN_GENCB; """ FUNCTIONS = """ -RSA* RSA_new(); +RSA *RSA_new(); void RSA_free(RSA *); int RSA_generate_key_ex(RSA *, int, BIGNUM *, BN_GENCB *); int RSA_check_key(const RSA *); |