diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-08 15:46:51 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-08 15:46:51 -0400 |
commit | 8c1c24ccbab627419c97ad8b39ece3f90b5b1b1a (patch) | |
tree | 107f522a7832ca59bdf5a6436ba88e130b32fb4e /src/_cffi_src/openssl | |
parent | d5bf17ad99939920aa73e6d00a36818ecaf1c2cc (diff) | |
parent | 2c9d6f13bfbc5269af8d8d4baec63f7c70063a5d (diff) | |
download | cryptography-8c1c24ccbab627419c97ad8b39ece3f90b5b1b1a.tar.gz cryptography-8c1c24ccbab627419c97ad8b39ece3f90b5b1b1a.tar.bz2 cryptography-8c1c24ccbab627419c97ad8b39ece3f90b5b1b1a.zip |
Merge pull request #2208 from reaperhulk/encode-ski
Support SubjectKeyIdentifier in CertificateBuilder
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r-- | src/_cffi_src/openssl/asn1.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/asn1.py b/src/_cffi_src/openssl/asn1.py index 44e9de17..c2d4fac0 100644 --- a/src/_cffi_src/openssl/asn1.py +++ b/src/_cffi_src/openssl/asn1.py @@ -128,6 +128,7 @@ 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 **); +int i2d_ASN1_OCTET_STRING(ASN1_OCTET_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 *); |