aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2018-08-31 17:43:39 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2018-08-31 18:43:39 -0400
commitabfd57240cc7f0004eb513520d612dafe282dd16 (patch)
tree98a590494de62c8d71020c0fbd5dbecfb48baa3b /src/_cffi_src
parentc4cd5ba933d26a2602295d3de95d50585523594c (diff)
downloadcryptography-abfd57240cc7f0004eb513520d612dafe282dd16.tar.gz
cryptography-abfd57240cc7f0004eb513520d612dafe282dd16.tar.bz2
cryptography-abfd57240cc7f0004eb513520d612dafe282dd16.zip
Simplify OCSP no check serialization (#4444)
Diffstat (limited to 'src/_cffi_src')
-rw-r--r--src/_cffi_src/openssl/asn1.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/asn1.py b/src/_cffi_src/openssl/asn1.py
index 51acf10c..82bf7979 100644
--- a/src/_cffi_src/openssl/asn1.py
+++ b/src/_cffi_src/openssl/asn1.py
@@ -30,6 +30,7 @@ typedef struct asn1_string_st ASN1_UTF8STRING;
typedef ... ASN1_TYPE;
typedef ... ASN1_GENERALIZEDTIME;
typedef ... ASN1_ENUMERATED;
+typedef ... ASN1_NULL;
static const int V_ASN1_GENERALIZEDTIME;
@@ -97,6 +98,8 @@ ASN1_INTEGER *BN_to_ASN1_INTEGER(BIGNUM *, ASN1_INTEGER *);
int i2d_ASN1_TYPE(ASN1_TYPE *, unsigned char **);
ASN1_TYPE *d2i_ASN1_TYPE(ASN1_TYPE **, const unsigned char **, long);
+
+ASN1_NULL *ASN1_NULL_new(void);
"""
CUSTOMIZATIONS = """