aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-11-19 14:25:25 +0800
committerDonald Stufft <donald@stufft.io>2016-11-19 01:25:25 -0500
commit10a602f62248482674a8c758e4266797bd132616 (patch)
treefccd0e6f79dfb18bd3381989ba8f49f5ca03b87f
parent47d3fcade37c76e1df7dd76d1e3425934853411e (diff)
downloadcryptography-10a602f62248482674a8c758e4266797bd132616.tar.gz
cryptography-10a602f62248482674a8c758e4266797bd132616.tar.bz2
cryptography-10a602f62248482674a8c758e4266797bd132616.zip
add two error codes for pypy ssl stdlib (#3253)
-rw-r--r--src/_cffi_src/openssl/err.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/err.py b/src/_cffi_src/openssl/err.py
index d824cf37..f388c5f0 100644
--- a/src/_cffi_src/openssl/err.py
+++ b/src/_cffi_src/openssl/err.py
@@ -80,6 +80,7 @@ static const int ASN1_R_WRONG_TAG;
static const int ASN1_R_NO_CONTENT_TYPE;
static const int ASN1_R_NO_MULTIPART_BODY_FAILURE;
static const int ASN1_R_NO_MULTIPART_BOUNDARY;
+static const int ASN1_R_HEADER_TOO_LONG;
static const int DH_F_COMPUTE_KEY;
@@ -198,6 +199,8 @@ static const int SSL_TLSEXT_ERR_NOACK;
static const int SSL_AD_INTERNAL_ERROR;
static const int SSL_AD_ACCESS_DENIED;
static const int SSL_AD_HANDSHAKE_FAILURE;
+
+static const int X509_R_CERT_ALREADY_IN_HASH_TABLE;
"""
FUNCTIONS = """