From 44868b4314dec630fea7af0f24735ae7cd2a8a96 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 10 Feb 2014 09:07:38 -0600 Subject: add X509_verify_cert_error_string --- cryptography/hazmat/bindings/openssl/x509.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cryptography/hazmat/bindings/openssl/x509.py b/cryptography/hazmat/bindings/openssl/x509.py index e4021a12..74259b3d 100644 --- a/cryptography/hazmat/bindings/openssl/x509.py +++ b/cryptography/hazmat/bindings/openssl/x509.py @@ -167,6 +167,8 @@ X509_STORE *X509_STORE_new(void); void X509_STORE_free(X509_STORE *); int X509_STORE_add_cert(X509_STORE *, X509 *); int X509_verify_cert(X509_STORE_CTX *); + +const char *X509_verify_cert_error_string(long); """ MACROS = """ -- cgit v1.2.3