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