Oops, forgot CHANGES entry and description:
authorDr. Stephen Henson <steve@openssl.org>
Wed, 15 May 2002 18:23:07 +0000 (18:23 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 15 May 2002 18:23:07 +0000 (18:23 +0000)
Allow reuse of cipher contexts by removing
automatic cleanup in EVP_*Final().

CHANGES

diff --git a/CHANGES b/CHANGES
index b1ecc09d92f79fe3abf82207e80bb0defb07b4e5..dd2f04ea80524fac712909257cae1da9ab77c02c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,14 @@
 
  Changes between 0.9.6d and 0.9.7  [XX xxx 2002]
 
+  *) Remove most calls to EVP_CIPHER_CTX_cleanup() in evp_enc.c, this 
+     allows existing EVP_CIPHER_CTX structures to be reused after
+     calling EVP_*Final(). This behaviour is used by encryption
+     BIOs and some applications. This has the side effect that
+     applications must explicitly clean up cipher contexts with
+     EVP_CIPHER_CTX_cleanup() or they will leak memory.
+     [Steve Henson]
+
   *) Check the values of dna and dnb in bn_mul_recursive before calling
      bn_mul_comba (a non zero value means the a or b arrays do not contain
      n2 elements) and fallback to bn_mul_normal if either is not zero.