Prepare to release 0.9.3a
[openssl.git] / CHANGES
1
2  OpenSSL CHANGES
3  _______________
4
5
6  Changes between 0.9.3 and 0.9.3a  [29 May 1999]
7
8   *) New configuration variant "sco5-gcc".
9
10   *) Updated some demos.
11      [Sean O Riordain, Wade Scholine]
12
13   *) Add missing BIO_free at exit of pkcs12 application.
14      [Wu Zhigang]
15
16   *) Fix memory leak in conf.c.
17      [Steve Henson]
18
19   *) Updates for Win32 to assembler version of MD5.
20      [Steve Henson]
21
22   *) Set #! path to perl in apps/der_chop to where we found it
23      instead of using a fixed path.
24      [Bodo Moeller]
25
26   *) SHA library changes for irix64-mips4-cc.
27      [Andy Polyakov]
28
29   *) Improvements for VMS support.
30      [Richard Levitte]
31
32  Changes between 0.9.2b and 0.9.3  [24 May 1999]
33
34   *) Bignum library bug fix. IRIX 6 passes "make test" now!
35      This also avoids the problems with SC4.2 and unpatched SC5.  
36      [Andy Polyakov <appro@fy.chalmers.se>]
37
38   *) New functions sk_num, sk_value and sk_set to replace the previous macros.
39      These are required because of the typesafe stack would otherwise break 
40      existing code. If old code used a structure member which used to be STACK
41      and is now STACK_OF (for example cert in a PKCS7_SIGNED structure) with
42      sk_num or sk_value it would produce an error because the num, data members
43      are not present in STACK_OF. Now it just produces a warning. sk_set
44      replaces the old method of assigning a value to sk_value
45      (e.g. sk_value(x, i) = y) which the library used in a few cases. Any code
46      that does this will no longer work (and should use sk_set instead) but
47      this could be regarded as a "questionable" behaviour anyway.
48      [Steve Henson]
49
50   *) Fix most of the other PKCS#7 bugs. The "experimental" code can now
51      correctly handle encrypted S/MIME data.
52      [Steve Henson]
53
54   *) Change type of various DES function arguments from des_cblock
55      (which means, in function argument declarations, pointer to char)
56      to des_cblock * (meaning pointer to array with 8 char elements),
57      which allows the compiler to do more typechecking; it was like
58      that back in SSLeay, but with lots of ugly casts.
59
60      Introduce new type const_des_cblock.
61      [Bodo Moeller]
62
63   *) Reorganise the PKCS#7 library and get rid of some of the more obvious
64      problems: find RecipientInfo structure that matches recipient certificate
65      and initialise the ASN1 structures properly based on passed cipher.
66      [Steve Henson]
67
68   *) Belatedly make the BN tests actually check the results.
69      [Ben Laurie]
70
71   *) Fix the encoding and decoding of negative ASN1 INTEGERS and conversion
72      to and from BNs: it was completely broken. New compilation option
73      NEG_PUBKEY_BUG to allow for some broken certificates that encode public
74      key elements as negative integers.
75      [Steve Henson]
76
77   *) Reorganize and speed up MD5.
78      [Andy Polyakov <appro@fy.chalmers.se>]
79
80   *) VMS support.
81      [Richard Levitte <richard@levitte.org>]
82
83   *) New option -out to asn1parse to allow the parsed structure to be
84      output to a file. This is most useful when combined with the -strparse
85      option to examine the output of things like OCTET STRINGS.
86      [Steve Henson]
87
88   *) Make SSL library a little more fool-proof by not requiring any longer
89      that SSL_set_{accept,connect}_state be called before
90      SSL_{accept,connect} may be used (SSL_set_..._state is omitted
91      in many applications because usually everything *appeared* to work as
92      intended anyway -- now it really works as intended).
93      [Bodo Moeller]
94
95   *) Move openssl.cnf out of lib/.
96      [Ulf Möller]
97
98   *) Fix various things to let OpenSSL even pass ``egcc -pipe -O2 -Wall
99      -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes
100      -Wmissing-declarations -Wnested-externs -Winline'' with EGCS 1.1.2+ 
101      [Ralf S. Engelschall]
102
103   *) Various fixes to the EVP and PKCS#7 code. It may now be able to
104      handle PKCS#7 enveloped data properly.
105      [Sebastian Akerman <sak@parallelconsulting.com>, modified by Steve]
106
107   *) Create a duplicate of the SSL_CTX's CERT in SSL_new instead of
108      copying pointers.  The cert_st handling is changed by this in
109      various ways (and thus what used to be known as ctx->default_cert
110      is now called ctx->cert, since we don't resort to s->ctx->[default_]cert
111      any longer when s->cert does not give us what we need).
112      ssl_cert_instantiate becomes obsolete by this change.
113      As soon as we've got the new code right (possibly it already is?),
114      we have solved a couple of bugs of the earlier code where s->cert
115      was used as if it could not have been shared with other SSL structures.
116
117      Note that using the SSL API in certain dirty ways now will result
118      in different behaviour than observed with earlier library versions:
119      Changing settings for an SSL_CTX *ctx after having done s = SSL_new(ctx)
120      does not influence s as it used to.
121      
122      In order to clean up things more thoroughly, inside SSL_SESSION
123      we don't use CERT any longer, but a new structure SESS_CERT
124      that holds per-session data (if available); currently, this is
125      the peer's certificate chain and, for clients, the server's certificate
126      and temporary key.  CERT holds only those values that can have
127      meaningful defaults in an SSL_CTX.
128      [Bodo Moeller]
129
130   *) New function X509V3_EXT_i2d() to create an X509_EXTENSION structure
131      from the internal representation. Various PKCS#7 fixes: remove some
132      evil casts and set the enc_dig_alg field properly based on the signing
133      key type.
134      [Steve Henson]
135
136   *) Allow PKCS#12 password to be set from the command line or the
137      environment. Let 'ca' get its config file name from the environment
138      variables "OPENSSL_CONF" or "SSLEAY_CONF" (for consistency with 'req'
139      and 'x509').
140      [Steve Henson]
141
142   *) Allow certificate policies extension to use an IA5STRING for the
143      organization field. This is contrary to the PKIX definition but
144      VeriSign uses it and IE5 only recognises this form. Document 'x509'
145      extension option.
146      [Steve Henson]
147
148   *) Add PEDANTIC compiler flag to allow compilation with gcc -pedantic,
149      without disallowing inline assembler and the like for non-pedantic builds.
150      [Ben Laurie]
151
152   *) Support Borland C++ builder.
153      [Janez Jere <jj@void.si>, modified by Ulf Möller]
154
155   *) Support Mingw32.
156      [Ulf Möller]
157
158   *) SHA-1 cleanups and performance enhancements.
159      [Andy Polyakov <appro@fy.chalmers.se>]
160
161   *) Sparc v8plus assembler for the bignum library.
162      [Andy Polyakov <appro@fy.chalmers.se>]
163
164   *) Accept any -xxx and +xxx compiler options in Configure.
165      [Ulf Möller]
166
167   *) Update HPUX configuration.
168      [Anonymous]
169   
170   *) Add missing sk_<type>_unshift() function to safestack.h
171      [Ralf S. Engelschall]
172
173   *) New function SSL_CTX_use_certificate_chain_file that sets the
174      "extra_cert"s in addition to the certificate.  (This makes sense
175      only for "PEM" format files, as chains as a whole are not
176      DER-encoded.)
177      [Bodo Moeller]
178
179   *) Support verify_depth from the SSL API.
180      x509_vfy.c had what can be considered an off-by-one-error:
181      Its depth (which was not part of the external interface)
182      was actually counting the number of certificates in a chain;
183      now it really counts the depth.
184      [Bodo Moeller]
185
186   *) Bugfix in crypto/x509/x509_cmp.c: The SSLerr macro was used
187      instead of X509err, which often resulted in confusing error
188      messages since the error codes are not globally unique
189      (e.g. an alleged error in ssl3_accept when a certificate
190      didn't match the private key).
191
192   *) New function SSL_CTX_set_session_id_context that allows to set a default
193      value (so that you don't need SSL_set_session_id_context for each
194      connection using the SSL_CTX).
195      [Bodo Moeller]
196
197   *) OAEP decoding bug fix.
198      [Ulf Möller]
199
200   *) Support INSTALL_PREFIX for package builders, as proposed by
201      David Harris.
202      [Bodo Moeller]
203
204   *) New Configure options "threads" and "no-threads".  For systems
205      where the proper compiler options are known (currently Solaris
206      and Linux), "threads" is the default.
207      [Bodo Moeller]
208
209   *) New script util/mklink.pl as a faster substitute for util/mklink.sh.
210      [Bodo Moeller]
211
212   *) Install various scripts to $(OPENSSLDIR)/misc, not to
213      $(INSTALLTOP)/bin -- they shouldn't clutter directories
214      such as /usr/local/bin.
215      [Bodo Moeller]
216
217   *) "make linux-shared" to build shared libraries.
218      [Niels Poppe <niels@netbox.org>]
219
220   *) New Configure option no-<cipher> (rsa, idea, rc5, ...).
221      [Ulf Möller]
222
223   *) Add the PKCS#12 API documentation to openssl.txt. Preliminary support for
224      extension adding in x509 utility.
225      [Steve Henson]
226
227   *) Remove NOPROTO sections and error code comments.
228      [Ulf Möller]
229
230   *) Partial rewrite of the DEF file generator to now parse the ANSI
231      prototypes.
232      [Steve Henson]
233
234   *) New Configure options --prefix=DIR and --openssldir=DIR.
235      [Ulf Möller]
236
237   *) Complete rewrite of the error code script(s). It is all now handled
238      by one script at the top level which handles error code gathering,
239      header rewriting and C source file generation. It should be much better
240      than the old method: it now uses a modified version of Ulf's parser to
241      read the ANSI prototypes in all header files (thus the old K&R definitions
242      aren't needed for error creation any more) and do a better job of
243      translating function codes into names. The old 'ASN1 error code imbedded
244      in a comment' is no longer necessary and it doesn't use .err files which
245      have now been deleted. Also the error code call doesn't have to appear all
246      on one line (which resulted in some large lines...).
247      [Steve Henson]
248
249   *) Change #include filenames from <foo.h> to <openssl/foo.h>.
250      [Bodo Moeller]
251
252   *) Change behaviour of ssl2_read when facing length-0 packets: Don't return
253      0 (which usually indicates a closed connection), but continue reading.
254      [Bodo Moeller]
255
256   *) Fix some race conditions.
257      [Bodo Moeller]
258
259   *) Add support for CRL distribution points extension. Add Certificate
260      Policies and CRL distribution points documentation.
261      [Steve Henson]
262
263   *) Move the autogenerated header file parts to crypto/opensslconf.h.
264      [Ulf Möller]
265
266   *) Fix new 56-bit DES export ciphersuites: they were using 7 bytes instead of
267      8 of keying material. Merlin has also confirmed interop with this fix
268      between OpenSSL and Baltimore C/SSL 2.0 and J/SSL 2.0.
269      [Merlin Hughes <merlin@baltimore.ie>]
270
271   *) Fix lots of warnings.
272      [Richard Levitte <levitte@stacken.kth.se>]
273  
274   *) In add_cert_dir() in crypto/x509/by_dir.c, break out of the loop if
275      the directory spec didn't end with a LIST_SEPARATOR_CHAR.
276      [Richard Levitte <levitte@stacken.kth.se>]
277  
278   *) Fix problems with sizeof(long) == 8.
279      [Andy Polyakov <appro@fy.chalmers.se>]
280
281   *) Change functions to ANSI C.
282      [Ulf Möller]
283
284   *) Fix typos in error codes.
285      [Martin Kraemer <Martin.Kraemer@MchP.Siemens.De>, Ulf Möller]
286
287   *) Remove defunct assembler files from Configure.
288      [Ulf Möller]
289
290   *) SPARC v8 assembler BIGNUM implementation.
291      [Andy Polyakov <appro@fy.chalmers.se>]
292
293   *) Support for Certificate Policies extension: both print and set.
294      Various additions to support the r2i method this uses.
295      [Steve Henson]
296
297   *) A lot of constification, and fix a bug in X509_NAME_oneline() that could
298      return a const string when you are expecting an allocated buffer.
299      [Ben Laurie]
300
301   *) Add support for ASN1 types UTF8String and VISIBLESTRING, also the CHOICE
302      types DirectoryString and DisplayText.
303      [Steve Henson]
304
305   *) Add code to allow r2i extensions to access the configuration database,
306      add an LHASH database driver and add several ctx helper functions.
307      [Steve Henson]
308
309   *) Fix an evil bug in bn_expand2() which caused various BN functions to
310      fail when they extended the size of a BIGNUM.
311      [Steve Henson]
312
313   *) Various utility functions to handle SXNet extension. Modify mkdef.pl to
314      support typesafe stack.
315      [Steve Henson]
316
317   *) Fix typo in SSL_[gs]et_options().
318      [Nils Frostberg <nils@medcom.se>]
319
320   *) Delete various functions and files that belonged to the (now obsolete)
321      old X509V3 handling code.
322      [Steve Henson]
323
324   *) New Configure option "rsaref".
325      [Ulf Möller]
326
327   *) Don't auto-generate pem.h.
328      [Bodo Moeller]
329
330   *) Introduce type-safe ASN.1 SETs.
331      [Ben Laurie]
332
333   *) Convert various additional casted stacks to type-safe STACK_OF() variants.
334      [Ben Laurie, Ralf S. Engelschall, Steve Henson]
335
336   *) Introduce type-safe STACKs. This will almost certainly break lots of code
337      that links with OpenSSL (well at least cause lots of warnings), but fear
338      not: the conversion is trivial, and it eliminates loads of evil casts. A
339      few STACKed things have been converted already. Feel free to convert more.
340      In the fullness of time, I'll do away with the STACK type altogether.
341      [Ben Laurie]
342
343   *) Add `openssl ca -revoke <certfile>' facility which revokes a certificate
344      specified in <certfile> by updating the entry in the index.txt file.
345      This way one no longer has to edit the index.txt file manually for
346      revoking a certificate. The -revoke option does the gory details now.
347      [Massimiliano Pala <madwolf@openca.org>, Ralf S. Engelschall]
348
349   *) Fix `openssl crl -noout -text' combination where `-noout' killed the
350      `-text' option at all and this way the `-noout -text' combination was
351      inconsistent in `openssl crl' with the friends in `openssl x509|rsa|dsa'.
352      [Ralf S. Engelschall]
353
354   *) Make sure a corresponding plain text error message exists for the
355      X509_V_ERR_CERT_REVOKED/23 error number which can occur when a
356      verify callback function determined that a certificate was revoked.
357      [Ralf S. Engelschall]
358
359   *) Bugfix: In test/testenc, don't test "openssl <cipher>" for
360      ciphers that were excluded, e.g. by -DNO_IDEA.  Also, test
361      all available cipers including rc5, which was forgotten until now.
362      In order to let the testing shell script know which algorithms
363      are available, a new (up to now undocumented) command
364      "openssl list-cipher-commands" is used.
365      [Bodo Moeller]
366
367   *) Bugfix: s_client occasionally would sleep in select() when
368      it should have checked SSL_pending() first.
369      [Bodo Moeller]
370
371   *) New functions DSA_do_sign and DSA_do_verify to provide access to
372      the raw DSA values prior to ASN.1 encoding.
373      [Ulf Möller]
374
375   *) Tweaks to Configure
376      Niels Poppe <niels@netbox.org>
377
378   *) Add support for PKCS#5 v2.0 ASN1 PBES2 structures. No other support,
379      yet...
380      [Steve Henson]
381
382   *) New variables $(RANLIB) and $(PERL) in the Makefiles.
383      [Ulf Möller]
384
385   *) New config option to avoid instructions that are illegal on the 80386.
386      The default code is faster, but requires at least a 486.
387      [Ulf Möller]
388   
389   *) Got rid of old SSL2_CLIENT_VERSION (inconsistently used) and
390      SSL2_SERVER_VERSION (not used at all) macros, which are now the
391      same as SSL2_VERSION anyway.
392      [Bodo Moeller]
393
394   *) New "-showcerts" option for s_client.
395      [Bodo Moeller]
396
397   *) Still more PKCS#12 integration. Add pkcs12 application to openssl
398      application. Various cleanups and fixes.
399      [Steve Henson]
400
401   *) More PKCS#12 integration. Add new pkcs12 directory with Makefile.ssl and
402      modify error routines to work internally. Add error codes and PBE init
403      to library startup routines.
404      [Steve Henson]
405
406   *) Further PKCS#12 integration. Added password based encryption, PKCS#8 and
407      packing functions to asn1 and evp. Changed function names and error
408      codes along the way.
409      [Steve Henson]
410
411   *) PKCS12 integration: and so it begins... First of several patches to
412      slowly integrate PKCS#12 functionality into OpenSSL. Add PKCS#12
413      objects to objects.h
414      [Steve Henson]
415
416   *) Add a new 'indent' option to some X509V3 extension code. Initial ASN1
417      and display support for Thawte strong extranet extension.
418      [Steve Henson]
419
420   *) Add LinuxPPC support.
421      [Jeff Dubrule <igor@pobox.org>]
422
423   *) Get rid of redundant BN file bn_mulw.c, and rename bn_div64 to
424      bn_div_words in alpha.s.
425      [Hannes Reinecke <H.Reinecke@hw.ac.uk> and Ben Laurie]
426
427   *) Make sure the RSA OAEP test is skipped under -DRSAref because
428      OAEP isn't supported when OpenSSL is built with RSAref.
429      [Ulf Moeller <ulf@fitug.de>]
430
431   *) Move definitions of IS_SET/IS_SEQUENCE inside crypto/asn1/asn1.h 
432      so they no longer are missing under -DNOPROTO. 
433      [Soren S. Jorvang <soren@t.dk>]
434
435
436  Changes between 0.9.1c and 0.9.2b  [22 Mar 1999]
437
438   *) Make SSL_get_peer_cert_chain() work in servers. Unfortunately, it still
439      doesn't work when the session is reused. Coming soon!
440      [Ben Laurie]
441
442   *) Fix a security hole, that allows sessions to be reused in the wrong
443      context thus bypassing client cert protection! All software that uses
444      client certs and session caches in multiple contexts NEEDS PATCHING to
445      allow session reuse! A fuller solution is in the works.
446      [Ben Laurie, problem pointed out by Holger Reif, Bodo Moeller (and ???)]
447
448   *) Some more source tree cleanups (removed obsolete files
449      crypto/bf/asm/bf586.pl, test/test.txt and crypto/sha/asm/f.s; changed
450      permission on "config" script to be executable) and a fix for the INSTALL
451      document.
452      [Ulf Moeller <ulf@fitug.de>]
453
454   *) Remove some legacy and erroneous uses of malloc, free instead of
455      Malloc, Free.
456      [Lennart Bang <lob@netstream.se>, with minor changes by Steve]
457
458   *) Make rsa_oaep_test return non-zero on error.
459      [Ulf Moeller <ulf@fitug.de>]
460
461   *) Add support for native Solaris shared libraries. Configure
462      solaris-sparc-sc4-pic, make, then run shlib/solaris-sc4.sh. It'd be nice
463      if someone would make that last step automatic.
464      [Matthias Loepfe <Matthias.Loepfe@AdNovum.CH>]
465
466   *) ctx_size was not built with the right compiler during "make links". Fixed.
467      [Ben Laurie]
468
469   *) Change the meaning of 'ALL' in the cipher list. It now means "everything
470      except NULL ciphers". This means the default cipher list will no longer
471      enable NULL ciphers. They need to be specifically enabled e.g. with
472      the string "DEFAULT:eNULL".
473      [Steve Henson]
474
475   *) Fix to RSA private encryption routines: if p < q then it would
476      occasionally produce an invalid result. This will only happen with
477      externally generated keys because OpenSSL (and SSLeay) ensure p > q.
478      [Steve Henson]
479
480   *) Be less restrictive and allow also `perl util/perlpath.pl
481      /path/to/bin/perl' in addition to `perl util/perlpath.pl /path/to/bin',
482      because this way one can also use an interpreter named `perl5' (which is
483      usually the name of Perl 5.xxx on platforms where an Perl 4.x is still
484      installed as `perl').
485      [Matthias Loepfe <Matthias.Loepfe@adnovum.ch>]
486
487   *) Let util/clean-depend.pl work also with older Perl 5.00x versions.
488      [Matthias Loepfe <Matthias.Loepfe@adnovum.ch>]
489
490   *) Fix Makefile.org so CC,CFLAG etc are passed to 'make links' add
491      advapi32.lib to Win32 build and change the pem test comparision
492      to fc.exe (thanks to Ulrich Kroener <kroneru@yahoo.com> for the
493      suggestion). Fix misplaced ASNI prototypes and declarations in evp.h
494      and crypto/des/ede_cbcm_enc.c.
495      [Steve Henson]
496
497   *) DES quad checksum was broken on big-endian architectures. Fixed.
498      [Ben Laurie]
499
500   *) Comment out two functions in bio.h that aren't implemented. Fix up the
501      Win32 test batch file so it (might) work again. The Win32 test batch file
502      is horrible: I feel ill....
503      [Steve Henson]
504
505   *) Move various #ifdefs around so NO_SYSLOG, NO_DIRENT etc are now selected
506      in e_os.h. Audit of header files to check ANSI and non ANSI
507      sections: 10 functions were absent from non ANSI section and not exported
508      from Windows DLLs. Fixed up libeay.num for new functions.
509      [Steve Henson]
510
511   *) Make `openssl version' output lines consistent.
512      [Ralf S. Engelschall]
513
514   *) Fix Win32 symbol export lists for BIO functions: Added
515      BIO_get_ex_new_index, BIO_get_ex_num, BIO_get_ex_data and BIO_set_ex_data
516      to ms/libeay{16,32}.def.
517      [Ralf S. Engelschall]
518
519   *) Second round of fixing the OpenSSL perl/ stuff. It now at least compiled
520      fine under Unix and passes some trivial tests I've now added. But the
521      whole stuff is horribly incomplete, so a README.1ST with a disclaimer was
522      added to make sure no one expects that this stuff really works in the
523      OpenSSL 0.9.2 release.  Additionally I've started to clean the XS sources
524      up and fixed a few little bugs and inconsistencies in OpenSSL.{pm,xs} and
525      openssl_bio.xs.
526      [Ralf S. Engelschall]
527
528   *) Fix the generation of two part addresses in perl.
529      [Kenji Miyake <kenji@miyake.org>, integrated by Ben Laurie]
530
531   *) Add config entry for Linux on MIPS.
532      [John Tobey <jtobey@channel1.com>]
533
534   *) Make links whenever Configure is run, unless we are on Windoze.
535      [Ben Laurie]
536
537   *) Permit extensions to be added to CRLs using crl_section in openssl.cnf.
538      Currently only issuerAltName and AuthorityKeyIdentifier make any sense
539      in CRLs.
540      [Steve Henson]
541
542   *) Add a useful kludge to allow package maintainers to specify compiler and
543      other platforms details on the command line without having to patch the
544      Configure script everytime: One now can use ``perl Configure
545      <id>:<details>'', i.e. platform ids are allowed to have details appended
546      to them (seperated by colons). This is treated as there would be a static
547      pre-configured entry in Configure's %table under key <id> with value
548      <details> and ``perl Configure <id>'' is called.  So, when you want to
549      perform a quick test-compile under FreeBSD 3.1 with pgcc and without
550      assembler stuff you can use ``perl Configure "FreeBSD-elf:pgcc:-O6:::"''
551      now, which overrides the FreeBSD-elf entry on-the-fly.
552      [Ralf S. Engelschall]
553
554   *) Disable new TLS1 ciphersuites by default: they aren't official yet.
555      [Ben Laurie]
556
557   *) Allow DSO flags like -fpic, -fPIC, -KPIC etc. to be specified
558      on the `perl Configure ...' command line. This way one can compile
559      OpenSSL libraries with Position Independent Code (PIC) which is needed
560      for linking it into DSOs.
561      [Ralf S. Engelschall]
562
563   *) Remarkably, export ciphers were totally broken and no-one had noticed!
564      Fixed.
565      [Ben Laurie]
566
567   *) Cleaned up the LICENSE document: The official contact for any license
568      questions now is the OpenSSL core team under openssl-core@openssl.org.
569      And add a paragraph about the dual-license situation to make sure people
570      recognize that _BOTH_ the OpenSSL license _AND_ the SSLeay license apply
571      to the OpenSSL toolkit.
572      [Ralf S. Engelschall]
573
574   *) General source tree makefile cleanups: Made `making xxx in yyy...'
575      display consistent in the source tree and replaced `/bin/rm' by `rm'.
576      Additonally cleaned up the `make links' target: Remove unnecessary
577      semicolons, subsequent redundant removes, inline point.sh into mklink.sh
578      to speed processing and no longer clutter the display with confusing
579      stuff. Instead only the actually done links are displayed.
580      [Ralf S. Engelschall]
581
582   *) Permit null encryption ciphersuites, used for authentication only. It used
583      to be necessary to set the preprocessor define SSL_ALLOW_ENULL to do this.
584      It is now necessary to set SSL_FORBID_ENULL to prevent the use of null
585      encryption.
586      [Ben Laurie]
587
588   *) Add a bunch of fixes to the PKCS#7 stuff. It used to sometimes reorder
589      signed attributes when verifying signatures (this would break them), 
590      the detached data encoding was wrong and public keys obtained using
591      X509_get_pubkey() weren't freed.
592      [Steve Henson]
593
594   *) Add text documentation for the BUFFER functions. Also added a work around
595      to a Win95 console bug. This was triggered by the password read stuff: the
596      last character typed gets carried over to the next fread(). If you were 
597      generating a new cert request using 'req' for example then the last
598      character of the passphrase would be CR which would then enter the first
599      field as blank.
600      [Steve Henson]
601
602   *) Added the new `Includes OpenSSL Cryptography Software' button as
603      doc/openssl_button.{gif,html} which is similar in style to the old SSLeay
604      button and can be used by applications based on OpenSSL to show the
605      relationship to the OpenSSL project.  
606      [Ralf S. Engelschall]
607
608   *) Remove confusing variables in function signatures in files
609      ssl/ssl_lib.c and ssl/ssl.h.
610      [Lennart Bong <lob@kulthea.stacken.kth.se>]
611
612   *) Don't install bss_file.c under PREFIX/include/
613      [Lennart Bong <lob@kulthea.stacken.kth.se>]
614
615   *) Get the Win32 compile working again. Modify mkdef.pl so it can handle
616      functions that return function pointers and has support for NT specific
617      stuff. Fix mk1mf.pl and VC-32.pl to support NT differences also. Various
618      #ifdef WIN32 and WINNTs sprinkled about the place and some changes from
619      unsigned to signed types: this was killing the Win32 compile.
620      [Steve Henson]
621
622   *) Add new certificate file to stack functions,
623      SSL_add_dir_cert_subjects_to_stack() and
624      SSL_add_file_cert_subjects_to_stack().  These largely supplant
625      SSL_load_client_CA_file(), and can be used to add multiple certs easily
626      to a stack (usually this is then handed to SSL_CTX_set_client_CA_list()).
627      This means that Apache-SSL and similar packages don't have to mess around
628      to add as many CAs as they want to the preferred list.
629      [Ben Laurie]
630
631   *) Experiment with doxygen documentation. Currently only partially applied to
632      ssl/ssl_lib.c.
633      See http://www.stack.nl/~dimitri/doxygen/index.html, and run doxygen with
634      openssl.doxy as the configuration file.
635      [Ben Laurie]
636   
637   *) Get rid of remaining C++-style comments which strict C compilers hate.
638      [Ralf S. Engelschall, pointed out by Carlos Amengual]
639
640   *) Changed BN_RECURSION in bn_mont.c to BN_RECURSION_MONT so it is not
641      compiled in by default: it has problems with large keys.
642      [Steve Henson]
643
644   *) Add a bunch of SSL_xxx() functions for configuring the temporary RSA and
645      DH private keys and/or callback functions which directly correspond to
646      their SSL_CTX_xxx() counterparts but work on a per-connection basis. This
647      is needed for applications which have to configure certificates on a
648      per-connection basis (e.g. Apache+mod_ssl) instead of a per-context basis
649      (e.g. s_server). 
650         For the RSA certificate situation is makes no difference, but
651      for the DSA certificate situation this fixes the "no shared cipher"
652      problem where the OpenSSL cipher selection procedure failed because the
653      temporary keys were not overtaken from the context and the API provided
654      no way to reconfigure them. 
655         The new functions now let applications reconfigure the stuff and they
656      are in detail: SSL_need_tmp_RSA, SSL_set_tmp_rsa, SSL_set_tmp_dh,
657      SSL_set_tmp_rsa_callback and SSL_set_tmp_dh_callback.  Additionally a new
658      non-public-API function ssl_cert_instantiate() is used as a helper
659      function and also to reduce code redundancy inside ssl_rsa.c.
660      [Ralf S. Engelschall]
661
662   *) Move s_server -dcert and -dkey options out of the undocumented feature
663      area because they are useful for the DSA situation and should be
664      recognized by the users.
665      [Ralf S. Engelschall]
666
667   *) Fix the cipher decision scheme for export ciphers: the export bits are
668      *not* within SSL_MKEY_MASK or SSL_AUTH_MASK, they are within
669      SSL_EXP_MASK.  So, the original variable has to be used instead of the
670      already masked variable.
671      [Richard Levitte <levitte@stacken.kth.se>]
672
673   *) Fix 'port' variable from `int' to `unsigned int' in crypto/bio/b_sock.c
674      [Richard Levitte <levitte@stacken.kth.se>]
675
676   *) Change type of another md_len variable in pk7_doit.c:PKCS7_dataFinal()
677      from `int' to `unsigned int' because it's a length and initialized by
678      EVP_DigestFinal() which expects an `unsigned int *'.
679      [Richard Levitte <levitte@stacken.kth.se>]
680
681   *) Don't hard-code path to Perl interpreter on shebang line of Configure
682      script. Instead use the usual Shell->Perl transition trick.
683      [Ralf S. Engelschall]
684
685   *) Make `openssl x509 -noout -modulus' functional also for DSA certificates
686      (in addition to RSA certificates) to match the behaviour of `openssl dsa
687      -noout -modulus' as it's already the case for `openssl rsa -noout
688      -modulus'.  For RSA the -modulus is the real "modulus" while for DSA
689      currently the public key is printed (a decision which was already done by
690      `openssl dsa -modulus' in the past) which serves a similar purpose.
691      Additionally the NO_RSA no longer completely removes the whole -modulus
692      option; it now only avoids using the RSA stuff. Same applies to NO_DSA
693      now, too.
694      [Ralf S.  Engelschall]
695
696   *) Add Arne Ansper's reliable BIO - this is an encrypted, block-digested
697      BIO. See the source (crypto/evp/bio_ok.c) for more info.
698      [Arne Ansper <arne@ats.cyber.ee>]
699
700   *) Dump the old yucky req code that tried (and failed) to allow raw OIDs
701      to be added. Now both 'req' and 'ca' can use new objects defined in the
702      config file.
703      [Steve Henson]
704
705   *) Add cool BIO that does syslog (or event log on NT).
706      [Arne Ansper <arne@ats.cyber.ee>, integrated by Ben Laurie]
707
708   *) Add support for new TLS ciphersuites, TLS_RSA_EXPORT56_WITH_RC4_56_MD5,
709      TLS_RSA_EXPORT56_WITH_RC2_CBC_56_MD5 and
710      TLS_RSA_EXPORT56_WITH_DES_CBC_SHA, as specified in "56-bit Export Cipher
711      Suites For TLS", draft-ietf-tls-56-bit-ciphersuites-00.txt.
712      [Ben Laurie]
713
714   *) Add preliminary config info for new extension code.
715      [Steve Henson]
716
717   *) Make RSA_NO_PADDING really use no padding.
718      [Ulf Moeller <ulf@fitug.de>]
719
720   *) Generate errors when private/public key check is done.
721      [Ben Laurie]
722
723   *) Overhaul for 'crl' utility. New function X509_CRL_print. Partial support
724      for some CRL extensions and new objects added.
725      [Steve Henson]
726
727   *) Really fix the ASN1 IMPLICIT bug this time... Partial support for private
728      key usage extension and fuller support for authority key id.
729      [Steve Henson]
730
731   *) Add OAEP encryption for the OpenSSL crypto library. OAEP is the improved
732      padding method for RSA, which is recommended for new applications in PKCS
733      #1 v2.0 (RFC 2437, October 1998).
734      OAEP (Optimal Asymmetric Encryption Padding) has better theoretical
735      foundations than the ad-hoc padding used in PKCS #1 v1.5. It is secure
736      against Bleichbacher's attack on RSA.
737      [Ulf Moeller <ulf@fitug.de>, reformatted, corrected and integrated by
738       Ben Laurie]
739
740   *) Updates to the new SSL compression code
741      [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)]
742
743   *) Fix so that the version number in the master secret, when passed
744      via RSA, checks that if TLS was proposed, but we roll back to SSLv3
745      (because the server will not accept higher), that the version number
746      is 0x03,0x01, not 0x03,0x00
747      [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)]
748
749   *) Run extensive memory leak checks on SSL apps. Fixed *lots* of memory
750      leaks in ssl/ relating to new X509_get_pubkey() behaviour. Also fixes
751      in apps/ and an unrelated leak in crypto/dsa/dsa_vrf.c
752      [Steve Henson]
753
754   *) Support for RAW extensions where an arbitrary extension can be
755      created by including its DER encoding. See apps/openssl.cnf for
756      an example.
757      [Steve Henson]
758
759   *) Make sure latest Perl versions don't interpret some generated C array
760      code as Perl array code in the crypto/err/err_genc.pl script.
761      [Lars Weber <3weber@informatik.uni-hamburg.de>]
762
763   *) Modify ms/do_ms.bat to not generate assembly language makefiles since
764      not many people have the assembler. Various Win32 compilation fixes and
765      update to the INSTALL.W32 file with (hopefully) more accurate Win32
766      build instructions.
767      [Steve Henson]
768
769   *) Modify configure script 'Configure' to automatically create crypto/date.h
770      file under Win32 and also build pem.h from pem.org. New script
771      util/mkfiles.pl to create the MINFO file on environments that can't do a
772      'make files': perl util/mkfiles.pl >MINFO should work.
773      [Steve Henson]
774
775   *) Major rework of DES function declarations, in the pursuit of correctness
776      and purity. As a result, many evil casts evaporated, and some weirdness,
777      too. You may find this causes warnings in your code. Zapping your evil
778      casts will probably fix them. Mostly.
779      [Ben Laurie]
780
781   *) Fix for a typo in asn1.h. Bug fix to object creation script
782      obj_dat.pl. It considered a zero in an object definition to mean
783      "end of object": none of the objects in objects.h have any zeros
784      so it wasn't spotted.
785      [Steve Henson, reported by Erwann ABALEA <eabalea@certplus.com>]
786
787   *) Add support for Triple DES Cipher Block Chaining with Output Feedback
788      Masking (CBCM). In the absence of test vectors, the best I have been able
789      to do is check that the decrypt undoes the encrypt, so far. Send me test
790      vectors if you have them.
791      [Ben Laurie]
792
793   *) Correct calculation of key length for export ciphers (too much space was
794      allocated for null ciphers). This has not been tested!
795      [Ben Laurie]
796
797   *) Modifications to the mkdef.pl for Win32 DEF file creation. The usage
798      message is now correct (it understands "crypto" and "ssl" on its
799      command line). There is also now an "update" option. This will update
800      the util/ssleay.num and util/libeay.num files with any new functions.
801      If you do a: 
802      perl util/mkdef.pl crypto ssl update
803      it will update them.
804      [Steve Henson]
805
806   *) Overhauled the Perl interface (perl/*):
807      - ported BN stuff to OpenSSL's different BN library
808      - made the perl/ source tree CVS-aware
809      - renamed the package from SSLeay to OpenSSL (the files still contain
810        their history because I've copied them in the repository)
811      - removed obsolete files (the test scripts will be replaced
812        by better Test::Harness variants in the future)
813      [Ralf S. Engelschall]
814
815   *) First cut for a very conservative source tree cleanup:
816      1. merge various obsolete readme texts into doc/ssleay.txt
817      where we collect the old documents and readme texts.
818      2. remove the first part of files where I'm already sure that we no
819      longer need them because of three reasons: either they are just temporary
820      files which were left by Eric or they are preserved original files where
821      I've verified that the diff is also available in the CVS via "cvs diff
822      -rSSLeay_0_8_1b" or they were renamed (as it was definitely the case for
823      the crypto/md/ stuff).
824      [Ralf S. Engelschall]
825
826   *) More extension code. Incomplete support for subject and issuer alt
827      name, issuer and authority key id. Change the i2v function parameters
828      and add an extra 'crl' parameter in the X509V3_CTX structure: guess
829      what that's for :-) Fix to ASN1 macro which messed up
830      IMPLICIT tag and add f_enum.c which adds a2i, i2a for ENUMERATED.
831      [Steve Henson]
832
833   *) Preliminary support for ENUMERATED type. This is largely copied from the
834      INTEGER code.
835      [Steve Henson]
836
837   *) Add new function, EVP_MD_CTX_copy() to replace frequent use of memcpy.
838      [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)]
839
840   *) Make sure `make rehash' target really finds the `openssl' program.
841      [Ralf S. Engelschall, Matthias Loepfe <Matthias.Loepfe@adnovum.ch>]
842
843   *) Squeeze another 7% of speed out of MD5 assembler, at least on a P2. I'd
844      like to hear about it if this slows down other processors.
845      [Ben Laurie]
846
847   *) Add CygWin32 platform information to Configure script.
848      [Alan Batie <batie@aahz.jf.intel.com>]
849
850   *) Fixed ms/32all.bat script: `no_asm' -> `no-asm'
851      [Rainer W. Gerling <gerling@mpg-gv.mpg.de>]
852   
853   *) New program nseq to manipulate netscape certificate sequences
854      [Steve Henson]
855
856   *) Modify crl2pkcs7 so it supports multiple -certfile arguments. Fix a
857      few typos.
858      [Steve Henson]
859
860   *) Fixes to BN code.  Previously the default was to define BN_RECURSION
861      but the BN code had some problems that would cause failures when
862      doing certificate verification and some other functions.
863      [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)]
864
865   *) Add ASN1 and PEM code to support netscape certificate sequences.
866      [Steve Henson]
867
868   *) Add ASN1 and PEM code to support netscape certificate sequences.
869      [Steve Henson]
870
871   *) Add several PKIX and private extended key usage OIDs.
872      [Steve Henson]
873
874   *) Modify the 'ca' program to handle the new extension code. Modify
875      openssl.cnf for new extension format, add comments.
876      [Steve Henson]
877
878   *) More X509 V3 changes. Fix typo in v3_bitstr.c. Add support to 'req'
879      and add a sample to openssl.cnf so req -x509 now adds appropriate
880      CA extensions.
881      [Steve Henson]
882
883   *) Continued X509 V3 changes. Add to other makefiles, integrate with the
884      error code, add initial support to X509_print() and x509 application.
885      [Steve Henson]
886
887   *) Takes a deep breath and start addding X509 V3 extension support code. Add
888      files in crypto/x509v3. Move original stuff to crypto/x509v3/old. All this
889      stuff is currently isolated and isn't even compiled yet.
890      [Steve Henson]
891
892   *) Continuing patches for GeneralizedTime. Fix up certificate and CRL
893      ASN1 to use ASN1_TIME and modify print routines to use ASN1_TIME_print.
894      Removed the versions check from X509 routines when loading extensions:
895      this allows certain broken certificates that don't set the version
896      properly to be processed.
897      [Steve Henson]
898
899   *) Deal with irritating shit to do with dependencies, in YAAHW (Yet Another
900      Ad Hoc Way) - Makefile.ssls now all contain local dependencies, which
901      can still be regenerated with "make depend".
902      [Ben Laurie]
903
904   *) Spelling mistake in C version of CAST-128.
905      [Ben Laurie, reported by Jeremy Hylton <jeremy@cnri.reston.va.us>]
906
907   *) Changes to the error generation code. The perl script err-code.pl 
908      now reads in the old error codes and retains the old numbers, only
909      adding new ones if necessary. It also only changes the .err files if new
910      codes are added. The makefiles have been modified to only insert errors
911      when needed (to avoid needlessly modifying header files). This is done
912      by only inserting errors if the .err file is newer than the auto generated
913      C file. To rebuild all the error codes from scratch (the old behaviour)
914      either modify crypto/Makefile.ssl to pass the -regen flag to err_code.pl
915      or delete all the .err files.
916      [Steve Henson]
917
918   *) CAST-128 was incorrectly implemented for short keys. The C version has
919      been fixed, but is untested. The assembler versions are also fixed, but
920      new assembler HAS NOT BEEN GENERATED FOR WIN32 - the Makefile needs fixing
921      to regenerate it if needed.
922      [Ben Laurie, reported (with fix for C version) by Jun-ichiro itojun
923       Hagino <itojun@kame.net>]
924
925   *) File was opened incorrectly in randfile.c.
926      [Ulf Möller <ulf@fitug.de>]
927
928   *) Beginning of support for GeneralizedTime. d2i, i2d, check and print
929      functions. Also ASN1_TIME suite which is a CHOICE of UTCTime or
930      GeneralizedTime. ASN1_TIME is the proper type used in certificates et
931      al: it's just almost always a UTCTime. Note this patch adds new error
932      codes so do a "make errors" if there are problems.
933      [Steve Henson]
934
935   *) Correct Linux 1 recognition in config.
936      [Ulf Möller <ulf@fitug.de>]
937
938   *) Remove pointless MD5 hash when using DSA keys in ca.
939      [Anonymous <nobody@replay.com>]
940
941   *) Generate an error if given an empty string as a cert directory. Also
942      generate an error if handed NULL (previously returned 0 to indicate an
943      error, but didn't set one).
944      [Ben Laurie, reported by Anonymous <nobody@replay.com>]
945
946   *) Add prototypes to SSL methods. Make SSL_write's buffer const, at last.
947      [Ben Laurie]
948
949   *) Fix the dummy function BN_ref_mod_exp() in rsaref.c to have the correct
950      parameters. This was causing a warning which killed off the Win32 compile.
951      [Steve Henson]
952
953   *) Remove C++ style comments from crypto/bn/bn_local.h.
954      [Neil Costigan <neil.costigan@celocom.com>]
955
956   *) The function OBJ_txt2nid was broken. It was supposed to return a nid
957      based on a text string, looking up short and long names and finally
958      "dot" format. The "dot" format stuff didn't work. Added new function
959      OBJ_txt2obj to do the same but return an ASN1_OBJECT and rewrote 
960      OBJ_txt2nid to use it. OBJ_txt2obj can also return objects even if the
961      OID is not part of the table.
962      [Steve Henson]
963
964   *) Add prototypes to X509 lookup/verify methods, fixing a bug in
965      X509_LOOKUP_by_alias().
966      [Ben Laurie]
967
968   *) Sort openssl functions by name.
969      [Ben Laurie]
970
971   *) Get the gendsa program working (hopefully) and add it to app list. Remove
972      encryption from sample DSA keys (in case anyone is interested the password
973      was "1234").
974      [Steve Henson]
975
976   *) Make _all_ *_free functions accept a NULL pointer.
977      [Frans Heymans <fheymans@isaserver.be>]
978
979   *) If a DH key is generated in s3_srvr.c, don't blow it by trying to use
980      NULL pointers.
981      [Anonymous <nobody@replay.com>]
982
983   *) s_server should send the CAfile as acceptable CAs, not its own cert.
984      [Bodo Moeller <3moeller@informatik.uni-hamburg.de>]
985
986   *) Don't blow it for numeric -newkey arguments to apps/req.
987      [Bodo Moeller <3moeller@informatik.uni-hamburg.de>]
988
989   *) Temp key "for export" tests were wrong in s3_srvr.c.
990      [Anonymous <nobody@replay.com>]
991
992   *) Add prototype for temp key callback functions
993      SSL_CTX_set_tmp_{rsa,dh}_callback().
994      [Ben Laurie]
995
996   *) Make DH_free() tolerate being passed a NULL pointer (like RSA_free() and
997      DSA_free()). Make X509_PUBKEY_set() check for errors in d2i_PublicKey().
998      [Steve Henson]
999
1000   *) X509_name_add_entry() freed the wrong thing after an error.
1001      [Arne Ansper <arne@ats.cyber.ee>]
1002
1003   *) rsa_eay.c would attempt to free a NULL context.
1004      [Arne Ansper <arne@ats.cyber.ee>]
1005
1006   *) BIO_s_socket() had a broken should_retry() on Windoze.
1007      [Arne Ansper <arne@ats.cyber.ee>]
1008
1009   *) BIO_f_buffer() didn't pass on BIO_CTRL_FLUSH.
1010      [Arne Ansper <arne@ats.cyber.ee>]
1011
1012   *) Make sure the already existing X509_STORE->depth variable is initialized
1013      in X509_STORE_new(), but document the fact that this variable is still
1014      unused in the certificate verification process.
1015      [Ralf S. Engelschall]
1016
1017   *) Fix the various library and apps files to free up pkeys obtained from
1018      X509_PUBKEY_get() et al. Also allow x509.c to handle netscape extensions.
1019      [Steve Henson]
1020
1021   *) Fix reference counting in X509_PUBKEY_get(). This makes
1022      demos/maurice/example2.c work, amongst others, probably.
1023      [Steve Henson and Ben Laurie]
1024
1025   *) First cut of a cleanup for apps/. First the `ssleay' program is now named
1026      `openssl' and second, the shortcut symlinks for the `openssl <command>'
1027      are no longer created. This way we have a single and consistent command
1028      line interface `openssl <command>', similar to `cvs <command>'.
1029      [Ralf S. Engelschall, Paul Sutton and Ben Laurie]
1030
1031   *) ca.c: move test for DSA keys inside #ifndef NO_DSA. Make pubkey
1032      BIT STRING wrapper always have zero unused bits.
1033      [Steve Henson]
1034
1035   *) Add CA.pl, perl version of CA.sh, add extended key usage OID.
1036      [Steve Henson]
1037
1038   *) Make the top-level INSTALL documentation easier to understand.
1039      [Paul Sutton]
1040
1041   *) Makefiles updated to exit if an error occurs in a sub-directory
1042      make (including if user presses ^C) [Paul Sutton]
1043
1044   *) Make Montgomery context stuff explicit in RSA data structure.
1045      [Ben Laurie]
1046
1047   *) Fix build order of pem and err to allow for generated pem.h.
1048      [Ben Laurie]
1049
1050   *) Fix renumbering bug in X509_NAME_delete_entry().
1051      [Ben Laurie]
1052
1053   *) Enhanced the err-ins.pl script so it makes the error library number 
1054      global and can add a library name. This is needed for external ASN1 and
1055      other error libraries.
1056      [Steve Henson]
1057
1058   *) Fixed sk_insert which never worked properly.
1059      [Steve Henson]
1060
1061   *) Fix ASN1 macros so they can handle indefinite length construted 
1062      EXPLICIT tags. Some non standard certificates use these: they can now
1063      be read in.
1064      [Steve Henson]
1065
1066   *) Merged the various old/obsolete SSLeay documentation files (doc/xxx.doc)
1067      into a single doc/ssleay.txt bundle. This way the information is still
1068      preserved but no longer messes up this directory. Now it's new room for
1069      the new set of documenation files.
1070      [Ralf S. Engelschall]
1071
1072   *) SETs were incorrectly DER encoded. This was a major pain, because they
1073      shared code with SEQUENCEs, which aren't coded the same. This means that
1074      almost everything to do with SETs or SEQUENCEs has either changed name or
1075      number of arguments.
1076      [Ben Laurie, based on a partial fix by GP Jayan <gp@nsj.co.jp>]
1077
1078   *) Fix test data to work with the above.
1079      [Ben Laurie]
1080
1081   *) Fix the RSA header declarations that hid a bug I fixed in 0.9.0b but
1082      was already fixed by Eric for 0.9.1 it seems.
1083      [Ben Laurie - pointed out by Ulf Möller <ulf@fitug.de>]
1084
1085   *) Autodetect FreeBSD3.
1086      [Ben Laurie]
1087
1088   *) Fix various bugs in Configure. This affects the following platforms:
1089      nextstep
1090      ncr-scde
1091      unixware-2.0
1092      unixware-2.0-pentium
1093      sco5-cc.
1094      [Ben Laurie]
1095
1096   *) Eliminate generated files from CVS. Reorder tests to regenerate files
1097      before they are needed.
1098      [Ben Laurie]
1099
1100   *) Generate Makefile.ssl from Makefile.org (to keep CVS happy).
1101      [Ben Laurie]
1102
1103
1104  Changes between 0.9.1b and 0.9.1c  [23-Dec-1998]
1105
1106   *) Added OPENSSL_VERSION_NUMBER to crypto/crypto.h and 
1107      changed SSLeay to OpenSSL in version strings.
1108      [Ralf S. Engelschall]
1109   
1110   *) Some fixups to the top-level documents.
1111      [Paul Sutton]
1112
1113   *) Fixed the nasty bug where rsaref.h was not found under compile-time
1114      because the symlink to include/ was missing.
1115      [Ralf S. Engelschall]
1116
1117   *) Incorporated the popular no-RSA/DSA-only patches 
1118      which allow to compile a RSA-free SSLeay.
1119      [Andrew Cooke / Interrader Ldt., Ralf S. Engelschall]
1120
1121   *) Fixed nasty rehash problem under `make -f Makefile.ssl links'
1122      when "ssleay" is still not found.
1123      [Ralf S. Engelschall]
1124
1125   *) Added more platforms to Configure: Cray T3E, HPUX 11, 
1126      [Ralf S. Engelschall, Beckmann <beckman@acl.lanl.gov>]
1127
1128   *) Updated the README file.
1129      [Ralf S. Engelschall]
1130
1131   *) Added various .cvsignore files in the CVS repository subdirs
1132      to make a "cvs update" really silent.
1133      [Ralf S. Engelschall]
1134
1135   *) Recompiled the error-definition header files and added
1136      missing symbols to the Win32 linker tables.
1137      [Ralf S. Engelschall]
1138
1139   *) Cleaned up the top-level documents;
1140      o new files: CHANGES and LICENSE
1141      o merged VERSION, HISTORY* and README* files a CHANGES.SSLeay 
1142      o merged COPYRIGHT into LICENSE
1143      o removed obsolete TODO file
1144      o renamed MICROSOFT to INSTALL.W32
1145      [Ralf S. Engelschall]
1146
1147   *) Removed dummy files from the 0.9.1b source tree: 
1148      crypto/asn1/x crypto/bio/cd crypto/bio/fg crypto/bio/grep crypto/bio/vi
1149      crypto/bn/asm/......add.c crypto/bn/asm/a.out crypto/dsa/f crypto/md5/f
1150      crypto/pem/gmon.out crypto/perlasm/f crypto/pkcs7/build crypto/rsa/f
1151      crypto/sha/asm/f crypto/threads/f ms/zzz ssl/f ssl/f.mak test/f
1152      util/f.mak util/pl/f util/pl/f.mak crypto/bf/bf_locl.old apps/f
1153      [Ralf S. Engelschall]
1154
1155   *) Added various platform portability fixes.
1156      [Mark J. Cox]
1157
1158   *) The Genesis of the OpenSSL rpject:
1159      We start with the latest (unreleased) SSLeay version 0.9.1b which Eric A.
1160      Young and Tim J. Hudson created while they were working for C2Net until
1161      summer 1998.
1162      [The OpenSSL Project]
1163  
1164
1165  Changes between 0.9.0b and 0.9.1b  [not released]
1166
1167   *) Updated a few CA certificates under certs/
1168      [Eric A. Young]
1169
1170   *) Changed some BIGNUM api stuff.
1171      [Eric A. Young]
1172
1173   *) Various platform ports: OpenBSD, Ultrix, IRIX 64bit, NetBSD, 
1174      DGUX x86, Linux Alpha, etc.
1175      [Eric A. Young]
1176
1177   *) New COMP library [crypto/comp/] for SSL Record Layer Compression: 
1178      RLE (dummy implemented) and ZLIB (really implemented when ZLIB is
1179      available).
1180      [Eric A. Young]
1181
1182   *) Add -strparse option to asn1pars program which parses nested 
1183      binary structures 
1184      [Dr Stephen Henson <shenson@bigfoot.com>]
1185
1186   *) Added "oid_file" to ssleay.cnf for "ca" and "req" programs.
1187      [Eric A. Young]
1188
1189   *) DSA fix for "ca" program.
1190      [Eric A. Young]
1191
1192   *) Added "-genkey" option to "dsaparam" program.
1193      [Eric A. Young]
1194
1195   *) Added RIPE MD160 (rmd160) message digest.
1196      [Eric A. Young]
1197
1198   *) Added -a (all) option to "ssleay version" command.
1199      [Eric A. Young]
1200
1201   *) Added PLATFORM define which is the id given to Configure.
1202      [Eric A. Young]
1203
1204   *) Added MemCheck_XXXX functions to crypto/mem.c for memory checking.
1205      [Eric A. Young]
1206
1207   *) Extended the ASN.1 parser routines.
1208      [Eric A. Young]
1209
1210   *) Extended BIO routines to support REUSEADDR, seek, tell, etc.
1211      [Eric A. Young]
1212
1213   *) Added a BN_CTX to the BN library.
1214      [Eric A. Young]
1215
1216   *) Fixed the weak key values in DES library
1217      [Eric A. Young]
1218
1219   *) Changed API in EVP library for cipher aliases.
1220      [Eric A. Young]
1221
1222   *) Added support for RC2/64bit cipher.
1223      [Eric A. Young]
1224
1225   *) Converted the lhash library to the crypto/mem.c functions.
1226      [Eric A. Young]
1227
1228   *) Added more recognized ASN.1 object ids.
1229      [Eric A. Young]
1230
1231   *) Added more RSA padding checks for SSL/TLS.
1232      [Eric A. Young]
1233
1234   *) Added BIO proxy/filter functionality.
1235      [Eric A. Young]
1236
1237   *) Added extra_certs to SSL_CTX which can be used
1238      send extra CA certificates to the client in the CA cert chain sending
1239      process. It can be configured with SSL_CTX_add_extra_chain_cert().
1240      [Eric A. Young]
1241
1242   *) Now Fortezza is denied in the authentication phase because
1243      this is key exchange mechanism is not supported by SSLeay at all.
1244      [Eric A. Young]
1245
1246   *) Additional PKCS1 checks.
1247      [Eric A. Young]
1248
1249   *) Support the string "TLSv1" for all TLS v1 ciphers.
1250      [Eric A. Young]
1251
1252   *) Added function SSL_get_ex_data_X509_STORE_CTX_idx() which gives the
1253      ex_data index of the SSL context in the X509_STORE_CTX ex_data.
1254      [Eric A. Young]
1255
1256   *) Fixed a few memory leaks.
1257      [Eric A. Young]
1258
1259   *) Fixed various code and comment typos.
1260      [Eric A. Young]
1261
1262   *) A minor bug in ssl/s3_clnt.c where there would always be 4 0 
1263      bytes sent in the client random.
1264      [Edward Bishop <ebishop@spyglass.com>]
1265