diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-07-25 15:29:20 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-07-25 15:29:20 -0400 |
commit | 86b4849256a579b3bb40cfa0f31e6b0b24d8d058 (patch) | |
tree | 28a69c2ed47540306dc61244a816e36f7bca4984 /src/_cffi_src/openssl | |
parent | 268b0ed4b9518604ca28b40a30488ff989932017 (diff) | |
parent | af57f7d2ce0b77a3e58a40d85b772ddd949f8e89 (diff) | |
download | cryptography-86b4849256a579b3bb40cfa0f31e6b0b24d8d058.tar.gz cryptography-86b4849256a579b3bb40cfa0f31e6b0b24d8d058.tar.bz2 cryptography-86b4849256a579b3bb40cfa0f31e6b0b24d8d058.zip |
Merge pull request #2175 from reaperhulk/csr-better-err-msg
handle RSA key too small and consume errors on CSR signature failure
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r-- | src/_cffi_src/openssl/err.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/err.py b/src/_cffi_src/openssl/err.py index eebf19ba..73ce4e3c 100644 --- a/src/_cffi_src/openssl/err.py +++ b/src/_cffi_src/openssl/err.py @@ -230,6 +230,7 @@ static const int RSA_R_DIGEST_TOO_BIG_FOR_RSA_KEY; static const int RSA_R_BLOCK_TYPE_IS_NOT_01; static const int RSA_R_BLOCK_TYPE_IS_NOT_02; static const int RSA_R_PKCS_DECODING_ERROR; +static const int RSA_F_RSA_SIGN; """ FUNCTIONS = """ |