summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorHeikki Toivonen <heikki@heikkitoivonen.net>2007-06-14 05:33:31 +0000
committerHeikki Toivonen <heikki@heikkitoivonen.net>2007-06-14 05:33:31 +0000
commitf742c175586d37f16ad18ff256a17c3b527033db (patch)
treecab643633ea6adf7c5183d3fe20a432c282a3a19 /CHANGES
parentb83c89b65e94f6fd1db15a20718cd16a4bb21cc1 (diff)
downloadm2crypto-f742c175586d37f16ad18ff256a17c3b527033db.tar.gz
Trying to raise the EVP exception from digest_final, cipher_init, cipher_update, cipher_final,
sign_update and sign_final was raising SystemError because EVP.EVPError was not initialized; now raising the correct EVP.EVPError. git-svn-id: http://svn.osafoundation.org/m2crypto/trunk@552 2715db39-9adf-0310-9c64-84f055769b4b
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES5
1 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 8987776..807122f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -12,8 +12,9 @@
- support multiple commonName fields for SSL peer hostname checking
- 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
+ EVP.EVPError; affected m2 functions are: digest_final, cipher_init,
+ cipher_update, cipher_final and sign_update. sign_final will now raise
+ EVP.EVPError instead of SystemError as well.
- 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.