diff options
author | cyli <cyli@twistedmatrix.com> | 2013-10-18 21:21:28 -0700 |
---|---|---|
committer | cyli <cyli@twistedmatrix.com> | 2013-10-18 21:21:28 -0700 |
commit | 01451eb9900c309884a7873b47ca17249dcf6a83 (patch) | |
tree | aa68228f94ddf949db3e18e2fc78e3298dd9ada3 | |
parent | 80b95ed3bf918ec4e8a4601dad8da837b39b896f (diff) | |
download | cryptography-01451eb9900c309884a7873b47ca17249dcf6a83.tar.gz cryptography-01451eb9900c309884a7873b47ca17249dcf6a83.tar.bz2 cryptography-01451eb9900c309884a7873b47ca17249dcf6a83.zip |
One more macro with a confusing error
-rw-r--r-- | cryptography/bindings/openssl/x509.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cryptography/bindings/openssl/x509.py b/cryptography/bindings/openssl/x509.py index fc0922fb..9a51a6d0 100644 --- a/cryptography/bindings/openssl/x509.py +++ b/cryptography/bindings/openssl/x509.py @@ -110,8 +110,6 @@ EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *); int X509_REQ_add_extensions(X509_REQ *, X509_EXTENSIONS *); int X509_REQ_print_ex(BIO *, X509_REQ *, unsigned long, unsigned long); -X509_EXTENSIONS *sk_X509_EXTENSION_new_null(); - int X509V3_EXT_print(BIO *, X509_EXTENSION *, unsigned long, int); ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *); @@ -173,6 +171,7 @@ int sk_X509_num(struct stack_st_X509 *); int sk_X509_push(struct stack_st_X509 *, X509 *); X509 *sk_X509_value(struct stack_st_X509 *, int); +X509_EXTENSIONS *sk_X509_EXTENSION_new_null(); int sk_X509_EXTENSION_num(X509_EXTENSIONS *); X509_EXTENSION *sk_X509_EXTENSION_value(X509_EXTENSIONS *, int); int sk_X509_EXTENSION_push(X509_EXTENSIONS *, X509_EXTENSION *); |