summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@divmod.com>2010-09-14 18:05:45 -0400
committerJean-Paul Calderone <exarkun@divmod.com>2010-09-14 18:05:45 -0400
commit84fd3742837cce6a8850baa3bae572ec7da899e3 (patch)
tree27c992d181c8e921092f490d0427c83aa15241cf /ChangeLog
parent541eaf2c5639853deff2d6236e95d0193446d29f (diff)
downloadpyopenssl-84fd3742837cce6a8850baa3bae572ec7da899e3.tar.gz
note what changed
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog22
1 files changed, 22 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d756e62..e00a831 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+2010-09-14 Jean-Paul Calderone <exarkun@twistedmatrix.com>
+
+ * OpenSSL/crypto/netscape_spki.c: Fix an off-by-one mistake in the
+ error handling for NetscapeSPKI.verify. Add additional error
+ checking to NetscapeSPKI.sign to handle the case where there is no
+ private key.
+
+ * OpenSSL/crypto/x509.c: Fix an overflow bug in the subject_name_hash
+ method of the X509 type which would cause it to return negative
+ values on 32 bit systems.
+
+ * OpenSSL/crypto/x509req.c: Fix an off-by-one mistake in the error
+ handling for X509Req.verify.
+
+ * OpenSSL/ssl/context.c: Fix the error handling in the load_tmp_dh
+ method of the Context type which would cause it to always raise
+ MemoryError, regardless of the actual error (such as a bad file
+ name).
+
+ * OpenSSL/test/: Numerous unit tests added, both for above fixes
+ and for other previously untested code paths.
+
2010-07-27 Jean-Paul Calderone <exarkun@twistedmatrix.com>
* Re-arrange the repository so that the package can be built and