diff options
author | Laurens Van Houtven <_@lvh.cc> | 2014-06-16 13:02:29 +0200 |
---|---|---|
committer | Laurens Van Houtven <_@lvh.cc> | 2014-06-16 13:02:29 +0200 |
commit | 9d50d262b1bacf7e2e6369ce7e98cdebef1b5e1f (patch) | |
tree | 6b58dbcb1a00c6a1dfa6ca293d29766896bbe970 | |
parent | 19b70d2adb5f7b9c1903d7b69e580b4c1148f394 (diff) | |
download | cryptography-9d50d262b1bacf7e2e6369ce7e98cdebef1b5e1f.tar.gz cryptography-9d50d262b1bacf7e2e6369ce7e98cdebef1b5e1f.tar.bz2 cryptography-9d50d262b1bacf7e2e6369ce7e98cdebef1b5e1f.zip |
Minor style fix
-rw-r--r-- | cryptography/hazmat/bindings/openssl/x509.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/openssl/x509.py b/cryptography/hazmat/bindings/openssl/x509.py index 36a15e4a..c0be3064 100644 --- a/cryptography/hazmat/bindings/openssl/x509.py +++ b/cryptography/hazmat/bindings/openssl/x509.py @@ -190,7 +190,6 @@ DSA *d2i_DSA_PUBKEY(DSA **, const unsigned char **, long); DSA *d2i_DSAPublicKey(DSA **, const unsigned char **, long); DSA *d2i_DSAPrivateKey(DSA **, const unsigned char **, long); - RSA *d2i_RSAPrivateKey_bio(BIO *, RSA **); int i2d_RSAPrivateKey_bio(BIO *, RSA *); RSA *d2i_RSAPublicKey_bio(BIO *, RSA **); @@ -237,7 +236,7 @@ int i2d_DSAPrivateKey(DSA *, unsigned char **); int X509_CRL_set_lastUpdate(X509_CRL *, ASN1_TIME *); int X509_CRL_set_nextUpdate(X509_CRL *, ASN1_TIME *); -/* these use STACK_OF(X509_EXTENSION) in 0.9.8e. Once we drop support for +/* These use STACK_OF(X509_EXTENSION) in 0.9.8e. Once we drop support for RHEL/CentOS 5 we should move these back to FUNCTIONS. */ int X509_REQ_add_extensions(X509_REQ *, X509_EXTENSIONS *); X509_EXTENSIONS *X509_REQ_get_extensions(X509_REQ *); |