diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-05 18:08:20 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-05 18:08:20 -0400 |
commit | caace6089919ba1392488be6c43d43ce6ca35cb0 (patch) | |
tree | 41c3af231ac7bddc410c0605eb8fff8a01b9d061 /src/_cffi_src/openssl/x509v3.py | |
parent | 36db7c224c395bb5c2071a25fb825e461e61d97b (diff) | |
parent | 3af3c13728662a3d0802e78666ff9ab85fef77c7 (diff) | |
download | cryptography-caace6089919ba1392488be6c43d43ce6ca35cb0.tar.gz cryptography-caace6089919ba1392488be6c43d43ce6ca35cb0.tar.bz2 cryptography-caace6089919ba1392488be6c43d43ce6ca35cb0.zip |
Merge pull request #2212 from reaperhulk/aki-bindings
add a few additional bindings for AuthorityKeyIdentifier in OpenSSL
Diffstat (limited to 'src/_cffi_src/openssl/x509v3.py')
-rw-r--r-- | src/_cffi_src/openssl/x509v3.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/x509v3.py b/src/_cffi_src/openssl/x509v3.py index d8edb979..6e35dacc 100644 --- a/src/_cffi_src/openssl/x509v3.py +++ b/src/_cffi_src/openssl/x509v3.py @@ -189,7 +189,9 @@ BASIC_CONSTRAINTS *BASIC_CONSTRAINTS_new(void); void BASIC_CONSTRAINTS_free(BASIC_CONSTRAINTS *); /* This is a macro defined by a call to DECLARE_ASN1_FUNCTIONS in the x509v3.h header. */ +AUTHORITY_KEYID *AUTHORITY_KEYID_new(void); void AUTHORITY_KEYID_free(AUTHORITY_KEYID *); +int i2d_AUTHORITY_KEYID(AUTHORITY_KEYID *, unsigned char **); NAME_CONSTRAINTS *NAME_CONSTRAINTS_new(void); void NAME_CONSTRAINTS_free(NAME_CONSTRAINTS *); |