diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-11-19 14:25:25 +0800 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2016-11-19 01:25:25 -0500 |
commit | 10a602f62248482674a8c758e4266797bd132616 (patch) | |
tree | fccd0e6f79dfb18bd3381989ba8f49f5ca03b87f /src/_cffi_src | |
parent | 47d3fcade37c76e1df7dd76d1e3425934853411e (diff) | |
download | cryptography-10a602f62248482674a8c758e4266797bd132616.tar.gz cryptography-10a602f62248482674a8c758e4266797bd132616.tar.bz2 cryptography-10a602f62248482674a8c758e4266797bd132616.zip |
add two error codes for pypy ssl stdlib (#3253)
Diffstat (limited to 'src/_cffi_src')
-rw-r--r-- | src/_cffi_src/openssl/err.py | 3 |
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 = """ |