summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorHeikki Toivonen <heikki@heikkitoivonen.net>2007-06-13 17:51:44 +0000
committerHeikki Toivonen <heikki@heikkitoivonen.net>2007-06-13 17:51:44 +0000
commita38746ed50bfcac20e553e6591a2342d0527b6e3 (patch)
tree43ae75a284d90b1f4f94b3876412d2d435cbb876 /CHANGES
parent1971668db0b53cb7bb7fd709977d69001aed4ffb (diff)
downloadm2crypto-a38746ed50bfcac20e553e6591a2342d0527b6e3.tar.gz
Fixed memory leak in ecdsa_verify.
git-svn-id: http://svn.osafoundation.org/m2crypto/trunk@547 2715db39-9adf-0310-9c64-84f055769b4b
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index f899989..91c01a5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -17,8 +17,8 @@
- If a subjectAltName extension of type dNSName is present in peer certificate,
use only the dNSNames when checking peer certificate hostname, as specified
by RFC 2818. If no dNSNames are present, use subject commonName.
-- Fixed memory leaks in m2 functions ec_key_new_by_curve_name, pkey_get_modulus
- and X509.verify
+- Fixed memory leaks in m2 functions ec_key_new_by_curve_name,
+ pkey_get_modulus, ecdsa_verify and X509.verify
- Fixed threading regressions introduced in 0.16,
by Aaron Reizes and Keith Jackson
- Added SSL session caching support to HTTPSConnection, by Keith Jackson