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