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