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