diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-02-26 16:45:42 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-02-26 16:45:42 -0500 |
commit | ce1bdcaf0451f85da20648b0f0597280a7876071 (patch) | |
tree | 555ad584037efe788e81fa58f62996a150f7fbc4 /src/_cffi_src | |
parent | eefc01ff04be97a7430133536ed5fbad893717fa (diff) | |
download | cryptography-ce1bdcaf0451f85da20648b0f0597280a7876071.tar.gz cryptography-ce1bdcaf0451f85da20648b0f0597280a7876071.tar.bz2 cryptography-ce1bdcaf0451f85da20648b0f0597280a7876071.zip |
Added policy constraint struct binding
Diffstat (limited to 'src/_cffi_src')
-rw-r--r-- | src/_cffi_src/openssl/x509v3.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/x509v3.py b/src/_cffi_src/openssl/x509v3.py index 51c8410a..7bc7dc0d 100644 --- a/src/_cffi_src/openssl/x509v3.py +++ b/src/_cffi_src/openssl/x509v3.py @@ -78,6 +78,11 @@ typedef struct { Cryptography_STACK_OF_GENERAL_SUBTREE *excludedSubtrees; } NAME_CONSTRAINTS; +typedef struct { + ASN1_INTEGER *requireExplicitPolicy; + ASN1_INTEGER *inhibitPolicyMapping; +} POLICY_CONSTRAINTS; + typedef struct { int type; |