From ef027a69808d045dffc3b4db274d67cea1be9f3a Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Thu, 6 Apr 2017 20:12:29 +0900 Subject: Add some ASN1_TIME related functions for the relevant PyOpenSSL patch. (#3491) * Add ASN1_TIME related functions for the relevant PyOpenSSL patch. * Move ASN1_TIME_check() to MACROS as the argument's constness varies between 1.0.x and 1.1.0~. --- src/_cffi_src/openssl/asn1.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/_cffi_src') diff --git a/src/_cffi_src/openssl/asn1.py b/src/_cffi_src/openssl/asn1.py index 4afca3de..5034c398 100644 --- a/src/_cffi_src/openssl/asn1.py +++ b/src/_cffi_src/openssl/asn1.py @@ -80,6 +80,7 @@ void ASN1_TIME_free(ASN1_TIME *); ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *, ASN1_GENERALIZEDTIME **); ASN1_TIME *ASN1_TIME_set(ASN1_TIME *, time_t); +int ASN1_TIME_set_string(ASN1_TIME *, const char *); /* ASN1 UTCTIME */ ASN1_UTCTIME *ASN1_UTCTIME_new(void); @@ -146,6 +147,7 @@ ASN1_INTEGER *BN_to_ASN1_INTEGER(BIGNUM *, ASN1_INTEGER *); /* These isn't a macro the arg is const on openssl 1.0.2+ */ int ASN1_GENERALIZEDTIME_check(ASN1_GENERALIZEDTIME *); int ASN1_UTCTIME_check(ASN1_UTCTIME *); +int ASN1_TIME_check(ASN1_TIME *); /* Not a macro, const on openssl 1.0 */ int ASN1_STRING_set_default_mask_asc(char *); -- cgit v1.2.3