diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-24 20:14:57 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-24 20:14:57 -0500 |
commit | a179ff84891550e4186cd421e1f0e11a7f818414 (patch) | |
tree | da21c24635a0108356da4f01f6817ce52989af59 | |
parent | 31d449e31db013500f57b4e2389c2489a39d2b6e (diff) | |
download | cryptography-a179ff84891550e4186cd421e1f0e11a7f818414.tar.gz cryptography-a179ff84891550e4186cd421e1f0e11a7f818414.tar.bz2 cryptography-a179ff84891550e4186cd421e1f0e11a7f818414.zip |
fix a style violation
-rw-r--r-- | cryptography/hazmat/bindings/openssl/x509.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/openssl/x509.py b/cryptography/hazmat/bindings/openssl/x509.py index 68658ebf..36a15e4a 100644 --- a/cryptography/hazmat/bindings/openssl/x509.py +++ b/cryptography/hazmat/bindings/openssl/x509.py @@ -183,11 +183,11 @@ const char *X509_get_default_private_dir(void); int i2d_RSA_PUBKEY(RSA *, unsigned char **); RSA *d2i_RSA_PUBKEY(RSA **, const unsigned char **, long); -RSA * d2i_RSAPublicKey(RSA **, const unsigned char **, long); +RSA *d2i_RSAPublicKey(RSA **, const unsigned char **, long); RSA *d2i_RSAPrivateKey(RSA **, const unsigned char **, long); int i2d_DSA_PUBKEY(DSA *, unsigned char **); DSA *d2i_DSA_PUBKEY(DSA **, const unsigned char **, long); -DSA * d2i_DSAPublicKey(DSA **, const unsigned char **, long); +DSA *d2i_DSAPublicKey(DSA **, const unsigned char **, long); DSA *d2i_DSAPrivateKey(DSA **, const unsigned char **, long); |