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