summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorHeikki Toivonen <heikki@heikkitoivonen.net>2007-06-08 05:00:47 +0000
committerHeikki Toivonen <heikki@heikkitoivonen.net>2007-06-08 05:00:47 +0000
commit7f18e80ba38cc240efbc20e9da0d3a7dd14b86d8 (patch)
treef974799894c44feacfc620e8bf350df31956b0b9 /CHANGES
parentaee36917bdc0005aa6d18a7bc79613d115a7cbe9 (diff)
downloadm2crypto-7f18e80ba38cc240efbc20e9da0d3a7dd14b86d8.tar.gz
Bug 8462, checking for erroneous returns from more OpenSSL EVP_* functions, which
means that certain things that used to fail silently will now raise an exception. Affected m2 functions are: digest_final, cipher_init, cipher_update, cipher_final and sign_update. git-svn-id: http://svn.osafoundation.org/m2crypto/trunk@529 2715db39-9adf-0310-9c64-84f055769b4b
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 1703f26..97fcd7a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,10 @@
- X509_Store_Context.get1_chain added
- X509_Extension.get_value accepts flag and indent parameters.
- support multiple dNSName fields in subjectAltName
+- Checking for erroneous returns from more OpenSSL EVP_* functions, which
+ means that certain things that used to fail silently will now raise an
+ exception; affected m2 functions are: digest_final, cipher_init,
+ cipher_update, cipher_final and sign_update
- Fixed threading regressions introduced in 0.16,
by Aaron Reizes and Keith Jackson
- m2xmlrpclib.py fixed to work with Python 2.5, by Miloslav Trmac