aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl/asn1.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2019-07-09 08:00:43 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2019-07-09 08:00:43 -0400
commite1fcc6e34ef3136fbabaf2e7a21307d4b8784025 (patch)
tree32274d6c7d99f6705771b56e998b77c061fd5203 /src/_cffi_src/openssl/asn1.py
parentcd59bd275ecc484b1662c86ae9ef0a64eb17d00f (diff)
downloadcryptography-e1fcc6e34ef3136fbabaf2e7a21307d4b8784025.tar.gz
cryptography-e1fcc6e34ef3136fbabaf2e7a21307d4b8784025.tar.bz2
cryptography-e1fcc6e34ef3136fbabaf2e7a21307d4b8784025.zip
add bindings to parse and create challenge passwords in X509 CSRs (#4943)
* add bindings to parse and create challenge passwords in X509 CSRs * moved away from the 1.1.0 section
Diffstat (limited to 'src/_cffi_src/openssl/asn1.py')
-rw-r--r--src/_cffi_src/openssl/asn1.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/_cffi_src/openssl/asn1.py b/src/_cffi_src/openssl/asn1.py
index 82bf7979..3e148ce0 100644
--- a/src/_cffi_src/openssl/asn1.py
+++ b/src/_cffi_src/openssl/asn1.py
@@ -27,7 +27,10 @@ typedef struct asn1_string_st ASN1_TIME;
typedef ... ASN1_OBJECT;
typedef struct asn1_string_st ASN1_STRING;
typedef struct asn1_string_st ASN1_UTF8STRING;
-typedef ... ASN1_TYPE;
+typedef struct {
+ int type;
+ ...;
+} ASN1_TYPE;
typedef ... ASN1_GENERALIZEDTIME;
typedef ... ASN1_ENUMERATED;
typedef ... ASN1_NULL;