diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-07-23 18:00:57 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-07-23 18:00:57 -0400 |
commit | ef8a72273d639be239d3d7c2380a0912083811da (patch) | |
tree | 5d7a89c36fd968c4f536f1c96e8f8fe2e49d78c1 /src/_cffi_src/openssl/asn1.py | |
parent | 7a217fe8d216b5897689c99a2b72eea5d5d5ffa1 (diff) | |
parent | dce91f0b2923daf60a6fdfd811eb5b3d81ac7c88 (diff) | |
download | cryptography-ef8a72273d639be239d3d7c2380a0912083811da.tar.gz cryptography-ef8a72273d639be239d3d7c2380a0912083811da.tar.bz2 cryptography-ef8a72273d639be239d3d7c2380a0912083811da.zip |
Merge pull request #2168 from reaperhulk/encode-ku
Support encoding KeyUsage into certificate signing requests
Diffstat (limited to 'src/_cffi_src/openssl/asn1.py')
-rw-r--r-- | src/_cffi_src/openssl/asn1.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/asn1.py b/src/_cffi_src/openssl/asn1.py index 5f8ca697..96eff7d3 100644 --- a/src/_cffi_src/openssl/asn1.py +++ b/src/_cffi_src/openssl/asn1.py @@ -125,7 +125,9 @@ int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *, int, int); """ MACROS = """ +ASN1_BIT_STRING *ASN1_BIT_STRING_new(void); void ASN1_BIT_STRING_free(ASN1_BIT_STRING *); +int i2d_ASN1_BIT_STRING(ASN1_BIT_STRING *, unsigned char **); /* This is not a macro, but is const on some versions of OpenSSL */ int ASN1_BIT_STRING_get_bit(ASN1_BIT_STRING *, int); ASN1_TIME *M_ASN1_TIME_dup(void *); |