diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-22 11:31:55 -0600 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-22 11:31:55 -0600 |
commit | dfdc3c37c0c0421d7e2d54bc10636eabb01a5557 (patch) | |
tree | 7be70c5fdc5d9e7ef777e1f3723d29a4402ad94f | |
parent | 7aa92312a47dc1ea79b2b1869881711115b80af6 (diff) | |
download | cryptography-dfdc3c37c0c0421d7e2d54bc10636eabb01a5557.tar.gz cryptography-dfdc3c37c0c0421d7e2d54bc10636eabb01a5557.tar.bz2 cryptography-dfdc3c37c0c0421d7e2d54bc10636eabb01a5557.zip |
Style nit
-rw-r--r-- | cryptography/hazmat/bindings/openssl/pem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/openssl/pem.py b/cryptography/hazmat/bindings/openssl/pem.py index d623db26..942cba34 100644 --- a/cryptography/hazmat/bindings/openssl/pem.py +++ b/cryptography/hazmat/bindings/openssl/pem.py @@ -31,8 +31,8 @@ EVP_PKEY *PEM_read_bio_PrivateKey(BIO *, EVP_PKEY **, pem_password_cb *, int PEM_write_bio_PKCS8PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *, char *, int, pem_password_cb *, void *); -int PEM_write_bio_PKCS8PrivateKey_nid(BIO *, EVP_PKEY *, int, - char *, int, pem_password_cb *, void *); +int PEM_write_bio_PKCS8PrivateKey_nid(BIO *, EVP_PKEY *, int, char *, int, + pem_password_cb *, void *); int i2d_PKCS8PrivateKey_bio(BIO *, EVP_PKEY *, const EVP_CIPHER *, char *, int, pem_password_cb *, void *); |