X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=CHANGES;h=4cd9fc1d69d33bd244a739a455f63e6239303733;hp=269a7740997a11adc0e8d086fcd5b57a49ad28af;hb=0d22b5dace84489d0ade8c880570eff0092dfb1a;hpb=334f1842fc61801398d88b006ab36c632f5e6f6c diff --git a/CHANGES b/CHANGES index 269a774099..4cd9fc1d69 100644 --- a/CHANGES +++ b/CHANGES @@ -43,6 +43,25 @@ *) applies to 0.9.6a ... 0.9.6d and 0.9.7 +) applies to 0.9.7 only + +) Fix the 'app_verify_callback' interface so that the user-defined + argument is actually passed to the callback: In the + SSL_CTX_set_cert_verify_callback() prototype, the callback + declaration has been changed from + int (*cb)() + into + int (*cb)(X509_STORE_CTX *,void *); + in ssl_verify_cert_chain (ssl/ssl_cert.c), the call + i=s->ctx->app_verify_callback(&ctx) + has been changed into + i=s->ctx->app_verify_callback(&ctx, s->ctx->app_verify_arg). + + To update applications using SSL_CTX_set_cert_verify_callback(), + a dummy argument can be added to their callback functions. + [D. K. Smetters ] + + +) Added the '4758cca' ENGINE to support IBM 4758 cards. + [Maurice Gittens , touchups by Geoff Thorpe] + *) Fix bug in SSL_clear(): bad sessions were not removed (found by Yoram Zahavi ). [Lutz Jaenicke] @@ -56,6 +75,10 @@ always load it have also been added. [Steve Henson] + +) Add the OFB, CFB and CTR (all with 128 bit feedback) to AES. + Adjust NIDs and EVP layer. + [Stephen Sprunk and Richard Levitte] + +) Config modules support in openssl utility. Most commands now load modules from the config file,