LHASH revamp. make depend.
[openssl.git] / CHANGES
1
2  OpenSSL CHANGES
3  _______________
4
5  Changes between 0.9.8g and 0.9.9  [xx XXX xxxx]
6
7   *) Revamp of LHASH to provide stronger type-checking. Still to come:
8      STACK, TXT_DB, bsearch, qsort.
9      [Ben Laurie]
10
11   *) Not all of this is true any longer.
12      Will have to be updated to reflect all subsequent changes to cryptlib.c.
13                                                                        --bodo
14
15
16      To support arbitrarily-typed thread IDs, deprecate the existing
17      type-specific APIs for a general purpose CRYPTO_THREADID
18      interface. Applications can choose the thread ID
19      callback type it wishes to register, as before;
20
21         void CRYPTO_set_id_callback(unsigned long (*func)(void));
22         void CRYPTO_set_idptr_callback(void *(*func)(void));
23
24      but retrieval, copies, and comparisons of thread IDs are via
25      type-independent interfaces;
26
27         void CRYPTO_THREADID_set(CRYPTO_THREADID *id);
28         void CRYPTO_THREADID_cmp(const CRYPTO_THREADID *id1,
29                                  const CRYPTO_THREADID *id2);
30         void CRYPTO_THREADID_cpy(CRYPTO_THREADID *dst,
31                                  const CRYPTO_THREADID *src);
32
33      Also, for code that needs a thread ID "value" for use in
34      hash-tables or logging, a "hash" is available by;
35
36         unsigned long CRYPTO_THREADID_hash(const CRYPTO_THREADID *id);
37
38      This hash value is likely to be the thread ID anyway, but
39      otherwise it will be unique if possible or as collision-free as
40      possible if uniqueness can't be guaranteed on the target
41      architecture.
42
43      The following functions are deprecated;
44         unsigned long (*CRYPTO_get_id_callback(void))(void);
45         unsigned long CRYPTO_thread_id(void);
46
47      As a consequence of the above, there are similar deprecations of
48      BN_BLINDING functions in favour of CRYPTO_THREADID-based
49      alternatives;
50
51         #ifndef OPENSSL_NO_DEPRECATED
52         unsigned long BN_BLINDING_get_thread_id(const BN_BLINDING *);
53         void BN_BLINDING_set_thread_id(BN_BLINDING *, unsigned long);
54         #endif
55         void BN_BLINDING_set_thread(BN_BLINDING *);
56         int BN_BLINDING_cmp_thread(const BN_BLINDING *, const
57                                    CRYPTO_THREADID *);
58
59      Also, the ERR_remove_state(int pid) API has been deprecated;
60
61         #ifndef OPENSSL_NO_DEPRECATED
62         void ERR_remove_state(unsigned long pid)
63         #endif
64         void ERR_remove_thread_state(CRYPTO_THREADID *tid);
65
66      [Geoff Thorpe]
67
68   *) Initial support for Cryptographic Message Syntax (aka CMS) based
69      on RFC3850, RFC3851 and RFC3852. New cms directory and cms utility,
70      support for data, signedData, compressedData, digestedData and
71      encryptedData, envelopedData types included. Scripts to check against
72      RFC4134 examples draft and interop and consistency checks of many
73      content types and variants.
74      [Steve Henson]
75
76   *) Add options to enc utility to support use of zlib compression BIO.
77      [Steve Henson]
78
79   *) Extend mk1mf to support importing of options and assembly language
80      files from Configure script, currently only included in VC-WIN32.
81      The assembly language rules can now optionally generate the source
82      files from the associated perl scripts.
83      [Steve Henson]
84
85   *) Implement remaining functionality needed to support GOST ciphersuites.
86      Interop testing has been performed using CryptoPro implementations.
87      [Victor B. Wagner <vitus@cryptocom.ru>]
88
89   *) s390x assembler pack.
90      [Andy Polyakov]
91
92   *) ARMv4 assembler pack. ARMv4 refers to v4 and later ISA, not CPU
93      "family."
94      [Andy Polyakov]
95
96   *) Implement Opaque PRF Input TLS extension as specified in
97      draft-rescorla-tls-opaque-prf-input-00.txt.  Since this is not an
98      official specification yet and no extension type assignment by
99      IANA exists, this extension (for now) will have to be explicitly
100      enabled when building OpenSSL by providing the extension number
101      to use.  For example, specify an option
102
103          -DTLSEXT_TYPE_opaque_prf_input=0x9527
104
105      to the "config" or "Configure" script to enable the extension,
106      assuming extension number 0x9527 (which is a completely arbitrary
107      and unofficial assignment based on the MD5 hash of the Internet
108      Draft).  Note that by doing so, you potentially lose
109      interoperability with other TLS implementations since these might
110      be using the same extension number for other purposes.
111
112      SSL_set_tlsext_opaque_prf_input(ssl, src, len) is used to set the
113      opaque PRF input value to use in the handshake.  This will create
114      an interal copy of the length-'len' string at 'src', and will
115      return non-zero for success.
116
117      To get more control and flexibility, provide a callback function
118      by using
119
120           SSL_CTX_set_tlsext_opaque_prf_input_callback(ctx, cb)
121           SSL_CTX_set_tlsext_opaque_prf_input_callback_arg(ctx, arg)
122
123      where
124
125           int (*cb)(SSL *, void *peerinput, size_t len, void *arg);
126           void *arg;
127
128      Callback function 'cb' will be called in handshakes, and is
129      expected to use SSL_set_tlsext_opaque_prf_input() as appropriate.
130      Argument 'arg' is for application purposes (the value as given to
131      SSL_CTX_set_tlsext_opaque_prf_input_callback_arg() will directly
132      be provided to the callback function).  The callback function
133      has to return non-zero to report success: usually 1 to use opaque
134      PRF input just if possible, or 2 to enforce use of the opaque PRF
135      input.  In the latter case, the library will abort the handshake
136      if opaque PRF input is not successfully negotiated.
137
138      Arguments 'peerinput' and 'len' given to the callback function
139      will always be NULL and 0 in the case of a client.  A server will
140      see the client's opaque PRF input through these variables if
141      available (NULL and 0 otherwise).  Note that if the server
142      provides an opaque PRF input, the length must be the same as the
143      length of the client's opaque PRF input.
144
145      Note that the callback function will only be called when creating
146      a new session (session resumption can resume whatever was
147      previously negotiated), and will not be called in SSL 2.0
148      handshakes; thus, SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv2) or
149      SSL_set_options(ssl, SSL_OP_NO_SSLv2) is especially recommended
150      for applications that need to enforce opaque PRF input.
151
152      [Bodo Moeller]
153
154   *) Update ssl code to support digests other than SHA1+MD5 for handshake
155      MAC. 
156
157      [Victor B. Wagner <vitus@cryptocom.ru>]
158
159   *) Add RFC4507 support to OpenSSL. This includes the corrections in
160      RFC4507bis. The encrypted ticket format is an encrypted encoded
161      SSL_SESSION structure, that way new session features are automatically
162      supported.
163
164      If a client application caches session in an SSL_SESSION structure
165      support is transparent because tickets are now stored in the encoded
166      SSL_SESSION.
167      
168      The SSL_CTX structure automatically generates keys for ticket
169      protection in servers so again support should be possible
170      with no application modification.
171
172      If a client or server wishes to disable RFC4507 support then the option
173      SSL_OP_NO_TICKET can be set.
174
175      Add a TLS extension debugging callback to allow the contents of any client
176      or server extensions to be examined.
177
178      This work was sponsored by Google.
179      [Steve Henson]
180
181   *) Final changes to avoid use of pointer pointer casts in OpenSSL.
182      OpenSSL should now compile cleanly on gcc 4.2
183      [Peter Hartley <pdh@utter.chaos.org.uk>, Steve Henson]
184
185   *) Update SSL library to use new EVP_PKEY MAC API. Include generic MAC
186      support including streaming MAC support: this is required for GOST
187      ciphersuite support.
188      [Victor B. Wagner <vitus@cryptocom.ru>, Steve Henson]
189
190   *) Add option -stream to use PKCS#7 streaming in smime utility. New
191      function i2d_PKCS7_bio_stream() and PEM_write_PKCS7_bio_stream()
192      to output in BER and PEM format.
193      [Steve Henson]
194
195   *) Experimental support for use of HMAC via EVP_PKEY interface. This
196      allows HMAC to be handled via the EVP_DigestSign*() interface. The
197      EVP_PKEY "key" in this case is the HMAC key, potentially allowing
198      ENGINE support for HMAC keys which are unextractable. New -mac and
199      -macopt options to dgst utility.
200      [Steve Henson]
201
202   *) New option -sigopt to dgst utility. Update dgst to use
203      EVP_Digest{Sign,Verify}*. These two changes make it possible to use
204      alternative signing paramaters such as X9.31 or PSS in the dgst 
205      utility.
206      [Steve Henson]
207
208   *) Change ssl_cipher_apply_rule(), the internal function that does
209      the work each time a ciphersuite string requests enabling
210      ("foo+bar"), moving ("+foo+bar"), disabling ("-foo+bar", or
211      removing ("!foo+bar") a class of ciphersuites: Now it maintains
212      the order of disabled ciphersuites such that those ciphersuites
213      that most recently went from enabled to disabled not only stay
214      in order with respect to each other, but also have higher priority
215      than other disabled ciphersuites the next time ciphersuites are
216      enabled again.
217
218      This means that you can now say, e.g., "PSK:-PSK:HIGH" to enable
219      the same ciphersuites as with "HIGH" alone, but in a specific
220      order where the PSK ciphersuites come first (since they are the
221      most recently disabled ciphersuites when "HIGH" is parsed).
222
223      Also, change ssl_create_cipher_list() (using this new
224      funcionality) such that between otherwise identical
225      cihpersuites, ephemeral ECDH is preferred over ephemeral DH in
226      the default order.
227      [Bodo Moeller]
228
229   *) Change ssl_create_cipher_list() so that it automatically
230      arranges the ciphersuites in reasonable order before starting
231      to process the rule string.  Thus, the definition for "DEFAULT"
232      (SSL_DEFAULT_CIPHER_LIST) now is just "ALL:!aNULL:!eNULL", but
233      remains equivalent to "AES:ALL:!aNULL:!eNULL:+aECDH:+kRSA:+RC4:@STRENGTH".
234      This makes it much easier to arrive at a reasonable default order
235      in applications for which anonymous ciphers are OK (meaning
236      that you can't actually use DEFAULT).
237      [Bodo Moeller; suggested by Victor Duchovni]
238
239   *) Split the SSL/TLS algorithm mask (as used for ciphersuite string
240      processing) into multiple integers instead of setting
241      "SSL_MKEY_MASK" bits, "SSL_AUTH_MASK" bits, "SSL_ENC_MASK",
242      "SSL_MAC_MASK", and "SSL_SSL_MASK" bits all in a single integer.
243      (These masks as well as the individual bit definitions are hidden
244      away into the non-exported interface ssl/ssl_locl.h, so this
245      change to the definition of the SSL_CIPHER structure shouldn't
246      affect applications.)  This give us more bits for each of these
247      categories, so there is no longer a need to coagulate AES128 and
248      AES256 into a single algorithm bit, and to coagulate Camellia128
249      and Camellia256 into a single algorithm bit, which has led to all
250      kinds of kludges.
251
252      Thus, among other things, the kludge introduced in 0.9.7m and
253      0.9.8e for masking out AES256 independently of AES128 or masking
254      out Camellia256 independently of AES256 is not needed here in 0.9.9.
255
256      With the change, we also introduce new ciphersuite aliases that
257      so far were missing: "AES128", "AES256", "CAMELLIA128", and
258      "CAMELLIA256".
259      [Bodo Moeller]
260
261   *) Add support for dsa-with-SHA224 and dsa-with-SHA256.
262      Use the leftmost N bytes of the signature input if the input is
263      larger than the prime q (with N being the size in bytes of q).
264      [Nils Larsch]
265
266   *) Very *very* experimental PKCS#7 streaming encoder support. Nothing uses
267      it yet and it is largely untested.
268      [Steve Henson]
269
270   *) Add support for the ecdsa-with-SHA224/256/384/512 signature types.
271      [Nils Larsch]
272
273   *) Initial incomplete changes to avoid need for function casts in OpenSSL
274      some compilers (gcc 4.2 and later) reject their use. Safestack is
275      reimplemented.  Update ASN1 to avoid use of legacy functions. 
276      [Steve Henson]
277
278   *) Win32/64 targets are linked with Winsock2.
279      [Andy Polyakov]
280
281   *) Add an X509_CRL_METHOD structure to allow CRL processing to be redirected
282      to external functions. This can be used to increase CRL handling 
283      efficiency especially when CRLs are very large by (for example) storing
284      the CRL revoked certificates in a database.
285      [Steve Henson]
286
287   *) Overhaul of by_dir code. Add support for dynamic loading of CRLs so
288      new CRLs added to a directory can be used. New command line option
289      -verify_return_error to s_client and s_server. This causes real errors
290      to be returned by the verify callback instead of carrying on no matter
291      what. This reflects the way a "real world" verify callback would behave.
292      [Steve Henson]
293
294   *) GOST engine, supporting several GOST algorithms and public key formats.
295      Kindly donated by Cryptocom.
296      [Cryptocom]
297
298   *) Partial support for Issuing Distribution Point CRL extension. CRLs
299      partitioned by DP are handled but no indirect CRL or reason partitioning
300      (yet). Complete overhaul of CRL handling: now the most suitable CRL is
301      selected via a scoring technique which handles IDP and AKID in CRLs.
302      [Steve Henson]
303
304   *) New X509_STORE_CTX callbacks lookup_crls() and lookup_certs() which
305      will ultimately be used for all verify operations: this will remove the
306      X509_STORE dependency on certificate verification and allow alternative
307      lookup methods.  X509_STORE based implementations of these two callbacks.
308      [Steve Henson]
309
310   *) Allow multiple CRLs to exist in an X509_STORE with matching issuer names.
311      Modify get_crl() to find a valid (unexpired) CRL if possible.
312      [Steve Henson]
313
314   *) New function X509_CRL_match() to check if two CRLs are identical. Normally
315      this would be called X509_CRL_cmp() but that name is already used by
316      a function that just compares CRL issuer names. Cache several CRL 
317      extensions in X509_CRL structure and cache CRLDP in X509.
318      [Steve Henson]
319
320   *) Store a "canonical" representation of X509_NAME structure (ASN1 Name)
321      this maps equivalent X509_NAME structures into a consistent structure.
322      Name comparison can then be performed rapidly using memcmp().
323      [Steve Henson]
324
325   *) Non-blocking OCSP request processing. Add -timeout option to ocsp 
326      utility.
327      [Steve Henson]
328
329   *) Allow digests to supply their own micalg string for S/MIME type using
330      the ctrl EVP_MD_CTRL_MICALG.
331      [Steve Henson]
332
333   *) During PKCS7 signing pass the PKCS7 SignerInfo structure to the
334      EVP_PKEY_METHOD before and after signing via the EVP_PKEY_CTRL_PKCS7_SIGN
335      ctrl. It can then customise the structure before and/or after signing
336      if necessary.
337      [Steve Henson]
338
339   *) New function OBJ_add_sigid() to allow application defined signature OIDs
340      to be added to OpenSSLs internal tables. New function OBJ_sigid_free()
341      to free up any added signature OIDs.
342      [Steve Henson]
343
344   *) New functions EVP_CIPHER_do_all(), EVP_CIPHER_do_all_sorted(),
345      EVP_MD_do_all() and EVP_MD_do_all_sorted() to enumerate internal
346      digest and cipher tables. New options added to openssl utility:
347      list-message-digest-algorithms and list-cipher-algorithms.
348      [Steve Henson]
349
350   *) In addition to the numerical (unsigned long) thread ID, provide
351      for a pointer (void *) thread ID.  This helps accomodate systems
352      that do not provide an unsigned long thread ID.  OpenSSL assumes
353      it is in the same thread iff both the numerical and the pointer
354      thread ID agree; so applications are just required to define one
355      of them appropriately (e.g., by using a pointer to a per-thread
356      memory object malloc()ed by the application for the pointer-type
357      thread ID).  Exactly analoguous to the existing functions
358
359         void CRYPTO_set_id_callback(unsigned long (*func)(void));
360         unsigned long (*CRYPTO_get_id_callback(void))(void);
361         unsigned long CRYPTO_thread_id(void);
362
363      we now have additional functions
364
365         void CRYPTO_set_idptr_callback(void *(*func)(void));
366         void *(*CRYPTO_get_idptr_callback(void))(void);
367         void *CRYPTO_thread_idptr(void);
368
369      also in <openssl/crypto.h>.  The default value for
370      CRYPTO_thread_idptr() if the application has not provided its own
371      callback is &errno.
372      [Bodo Moeller]
373
374      -- NOTE -- this change has been reverted and replaced with a
375      type-independent wrapper (ie. applications do not have to check
376      two type-specific thread ID representations as implied in this
377      change note). However, the "idptr" callback form described here
378      can still be registered. Please see the more recent CHANGES note
379      regarding CRYPTO_THREADID. [Geoff Thorpe]
380      -- NOTE --
381
382   *) Change the array representation of binary polynomials: the list
383      of degrees of non-zero coefficients is now terminated with -1.
384      Previously it was terminated with 0, which was also part of the
385      value; thus, the array representation was not applicable to
386      polynomials where t^0 has coefficient zero.  This change makes
387      the array representation useful in a more general context.
388      [Douglas Stebila]
389
390   *) Various modifications and fixes to SSL/TLS cipher string
391      handling.  For ECC, the code now distinguishes between fixed ECDH
392      with RSA certificates on the one hand and with ECDSA certificates
393      on the other hand, since these are separate ciphersuites.  The
394      unused code for Fortezza ciphersuites has been removed.
395
396      For consistency with EDH, ephemeral ECDH is now called "EECDH"
397      (not "ECDHE").  For consistency with the code for DH
398      certificates, use of ECDH certificates is now considered ECDH
399      authentication, not RSA or ECDSA authentication (the latter is
400      merely the CA's signing algorithm and not actively used in the
401      protocol).
402
403      The temporary ciphersuite alias "ECCdraft" is no longer
404      available, and ECC ciphersuites are no longer excluded from "ALL"
405      and "DEFAULT".  The following aliases now exist for RFC 4492
406      ciphersuites, most of these by analogy with the DH case:
407
408          kECDHr   - ECDH cert, signed with RSA
409          kECDHe   - ECDH cert, signed with ECDSA
410          kECDH    - ECDH cert (signed with either RSA or ECDSA)
411          kEECDH   - ephemeral ECDH
412          ECDH     - ECDH cert or ephemeral ECDH
413
414          aECDH    - ECDH cert
415          aECDSA   - ECDSA cert
416          ECDSA    - ECDSA cert
417
418          AECDH    - anonymous ECDH
419          EECDH    - non-anonymous ephemeral ECDH (equivalent to "kEECDH:-AECDH")
420
421      [Bodo Moeller]
422
423   *) Add additional S/MIME capabilities for AES and GOST ciphers if supported.
424      Use correct micalg parameters depending on digest(s) in signed message.
425      [Steve Henson]
426
427   *) Add engine support for EVP_PKEY_ASN1_METHOD. Add functions to process
428      an ENGINE asn1 method. Support ENGINE lookups in the ASN1 code.
429      [Steve Henson]
430
431   *) Initial engine support for EVP_PKEY_METHOD. New functions to permit
432      an engine to register a method. Add ENGINE lookups for methods and
433      functional reference processing.
434      [Steve Henson]
435
436   *) New functions EVP_Digest{Sign,Verify)*. These are enchance versions of
437      EVP_{Sign,Verify}* which allow an application to customise the signature
438      process.
439      [Steve Henson]
440
441   *) New -resign option to smime utility. This adds one or more signers
442      to an existing PKCS#7 signedData structure. Also -md option to use an
443      alternative message digest algorithm for signing.
444      [Steve Henson]
445
446   *) Tidy up PKCS#7 routines and add new functions to make it easier to
447      create PKCS7 structures containing multiple signers. Update smime
448      application to support multiple signers.
449      [Steve Henson]
450
451   *) New -macalg option to pkcs12 utility to allow setting of an alternative
452      digest MAC.
453      [Steve Henson]
454
455   *) Initial support for PKCS#5 v2.0 PRFs other than default SHA1 HMAC.
456      Reorganize PBE internals to lookup from a static table using NIDs,
457      add support for HMAC PBE OID translation. Add a EVP_CIPHER ctrl:
458      EVP_CTRL_PBE_PRF_NID this allows a cipher to specify an alternative
459      PRF which will be automatically used with PBES2.
460      [Steve Henson]
461
462   *) Replace the algorithm specific calls to generate keys in "req" with the
463      new API.
464      [Steve Henson]
465
466   *) Update PKCS#7 enveloped data routines to use new API. This is now
467      supported by any public key method supporting the encrypt operation. A
468      ctrl is added to allow the public key algorithm to examine or modify
469      the PKCS#7 RecipientInfo structure if it needs to: for RSA this is
470      a no op.
471      [Steve Henson]
472
473   *) Add a ctrl to asn1 method to allow a public key algorithm to express
474      a default digest type to use. In most cases this will be SHA1 but some
475      algorithms (such as GOST) need to specify an alternative digest. The
476      return value indicates how strong the prefernce is 1 means optional and
477      2 is mandatory (that is it is the only supported type). Modify
478      ASN1_item_sign() to accept a NULL digest argument to indicate it should
479      use the default md. Update openssl utilities to use the default digest
480      type for signing if it is not explicitly indicated.
481      [Steve Henson]
482
483   *) Use OID cross reference table in ASN1_sign() and ASN1_verify(). New 
484      EVP_MD flag EVP_MD_FLAG_PKEY_METHOD_SIGNATURE. This uses the relevant
485      signing method from the key type. This effectively removes the link
486      between digests and public key types.
487      [Steve Henson]
488
489   *) Add an OID cross reference table and utility functions. Its purpose is to
490      translate between signature OIDs such as SHA1WithrsaEncryption and SHA1,
491      rsaEncryption. This will allow some of the algorithm specific hackery
492      needed to use the correct OID to be removed. 
493      [Steve Henson]
494
495   *) Remove algorithm specific dependencies when setting PKCS7_SIGNER_INFO
496      structures for PKCS7_sign(). They are now set up by the relevant public
497      key ASN1 method.
498      [Steve Henson]
499
500   *) Add provisional EC pkey method with support for ECDSA and ECDH.
501      [Steve Henson]
502
503   *) Add support for key derivation (agreement) in the API, DH method and
504      pkeyutl.
505      [Steve Henson]
506
507   *) Add DSA pkey method and DH pkey methods, extend DH ASN1 method to support
508      public and private key formats. As a side effect these add additional 
509      command line functionality not previously available: DSA signatures can be
510      generated and verified using pkeyutl and DH key support and generation in
511      pkey, genpkey.
512      [Steve Henson]
513
514   *) BeOS support.
515      [Oliver Tappe <zooey@hirschkaefer.de>]
516
517   *) New make target "install_html_docs" installs HTML renditions of the
518      manual pages.
519      [Oliver Tappe <zooey@hirschkaefer.de>]
520
521   *) New utility "genpkey" this is analagous to "genrsa" etc except it can
522      generate keys for any algorithm. Extend and update EVP_PKEY_METHOD to
523      support key and parameter generation and add initial key generation
524      functionality for RSA.
525      [Steve Henson]
526
527   *) Add functions for main EVP_PKEY_method operations. The undocumented
528      functions EVP_PKEY_{encrypt,decrypt} have been renamed to
529      EVP_PKEY_{encrypt,decrypt}_old. 
530      [Steve Henson]
531
532   *) Initial definitions for EVP_PKEY_METHOD. This will be a high level public
533      key API, doesn't do much yet.
534      [Steve Henson]
535
536   *) New function EVP_PKEY_asn1_get0_info() to retrieve information about
537      public key algorithms. New option to openssl utility:
538      "list-public-key-algorithms" to print out info.
539      [Steve Henson]
540
541   *) Implement the Supported Elliptic Curves Extension for
542      ECC ciphersuites from draft-ietf-tls-ecc-12.txt.
543      [Douglas Stebila]
544
545   *) Don't free up OIDs in OBJ_cleanup() if they are in use by EVP_MD or
546      EVP_CIPHER structures to avoid later problems in EVP_cleanup().
547      [Steve Henson]
548
549   *) New utilities pkey and pkeyparam. These are similar to algorithm specific
550      utilities such as rsa, dsa, dsaparam etc except they process any key
551      type.
552      [Steve Henson]
553
554   *) Transfer public key printing routines to EVP_PKEY_ASN1_METHOD. New 
555      functions EVP_PKEY_print_public(), EVP_PKEY_print_private(),
556      EVP_PKEY_print_param() to print public key data from an EVP_PKEY
557      structure.
558      [Steve Henson]
559
560   *) Initial support for pluggable public key ASN1.
561      De-spaghettify the public key ASN1 handling. Move public and private
562      key ASN1 handling to a new EVP_PKEY_ASN1_METHOD structure. Relocate
563      algorithm specific handling to a single module within the relevant
564      algorithm directory. Add functions to allow (near) opaque processing
565      of public and private key structures.
566      [Steve Henson]
567
568   *) Implement the Supported Point Formats Extension for
569      ECC ciphersuites from draft-ietf-tls-ecc-12.txt.
570      [Douglas Stebila]
571
572   *) Add initial support for RFC 4279 PSK TLS ciphersuites. Add members
573      for the psk identity [hint] and the psk callback functions to the
574      SSL_SESSION, SSL and SSL_CTX structure.
575      
576      New ciphersuites:
577          PSK-RC4-SHA, PSK-3DES-EDE-CBC-SHA, PSK-AES128-CBC-SHA,
578          PSK-AES256-CBC-SHA
579  
580      New functions:
581          SSL_CTX_use_psk_identity_hint
582          SSL_get_psk_identity_hint
583          SSL_get_psk_identity
584          SSL_use_psk_identity_hint
585
586      [Mika Kousa and Pasi Eronen of Nokia Corporation]
587
588   *) Add RFC 3161 compliant time stamp request creation, response generation
589      and response verification functionality.
590      [Zoltán Glózik <zglozik@opentsa.org>, The OpenTSA Project]
591
592   *) Add initial support for TLS extensions, specifically for the server_name
593      extension so far.  The SSL_SESSION, SSL_CTX, and SSL data structures now
594      have new members for a host name.  The SSL data structure has an
595      additional member SSL_CTX *initial_ctx so that new sessions can be
596      stored in that context to allow for session resumption, even after the
597      SSL has been switched to a new SSL_CTX in reaction to a client's
598      server_name extension.
599
600      New functions (subject to change):
601
602          SSL_get_servername()
603          SSL_get_servername_type()
604          SSL_set_SSL_CTX()
605
606      New CTRL codes and macros (subject to change):
607
608          SSL_CTRL_SET_TLSEXT_SERVERNAME_CB
609                                  - SSL_CTX_set_tlsext_servername_callback()
610          SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG
611                                       - SSL_CTX_set_tlsext_servername_arg()
612          SSL_CTRL_SET_TLSEXT_HOSTNAME           - SSL_set_tlsext_host_name()
613
614      openssl s_client has a new '-servername ...' option.
615
616      openssl s_server has new options '-servername_host ...', '-cert2 ...',
617      '-key2 ...', '-servername_fatal' (subject to change).  This allows
618      testing the HostName extension for a specific single host name ('-cert'
619      and '-key' remain fallbacks for handshakes without HostName
620      negotiation).  If the unrecogninzed_name alert has to be sent, this by
621      default is a warning; it becomes fatal with the '-servername_fatal'
622      option.
623
624      [Peter Sylvester,  Remy Allais, Christophe Renou]
625
626   *) Whirlpool hash implementation is added.
627      [Andy Polyakov]
628
629   *) BIGNUM code on 64-bit SPARCv9 targets is switched from bn(64,64) to
630      bn(64,32). Because of instruction set limitations it doesn't have
631      any negative impact on performance. This was done mostly in order
632      to make it possible to share assembler modules, such as bn_mul_mont
633      implementations, between 32- and 64-bit builds without hassle.
634      [Andy Polyakov]
635
636   *) Move code previously exiled into file crypto/ec/ec2_smpt.c
637      to ec2_smpl.c, and no longer require the OPENSSL_EC_BIN_PT_COMP
638      macro.
639      [Bodo Moeller]
640
641   *) New candidate for BIGNUM assembler implementation, bn_mul_mont,
642      dedicated Montgomery multiplication procedure, is introduced.
643      BN_MONT_CTX is modified to allow bn_mul_mont to reach for higher
644      "64-bit" performance on certain 32-bit targets.
645      [Andy Polyakov]
646
647   *) New option SSL_OP_NO_COMP to disable use of compression selectively
648      in SSL structures. New SSL ctrl to set maximum send fragment size. 
649      Save memory by seeting the I/O buffer sizes dynamically instead of
650      using the maximum available value.
651      [Steve Henson]
652
653   *) New option -V for 'openssl ciphers'. This prints the ciphersuite code
654      in addition to the text details.
655      [Bodo Moeller]
656
657   *) Very, very preliminary EXPERIMENTAL support for printing of general
658      ASN1 structures. This currently produces rather ugly output and doesn't
659      handle several customised structures at all.
660      [Steve Henson]
661
662   *) Integrated support for PVK file format and some related formats such
663      as MS PUBLICKEYBLOB and PRIVATEKEYBLOB. Command line switches to support
664      these in the 'rsa' and 'dsa' utilities.
665      [Steve Henson]
666
667   *) Support for PKCS#1 RSAPublicKey format on rsa utility command line.
668      [Steve Henson]
669
670   *) Remove the ancient ASN1_METHOD code. This was only ever used in one
671      place for the (very old) "NETSCAPE" format certificates which are now
672      handled using new ASN1 code equivalents.
673      [Steve Henson]
674
675   *) Let the TLSv1_method() etc. functions return a 'const' SSL_METHOD
676      pointer and make the SSL_METHOD parameter in SSL_CTX_new,
677      SSL_CTX_set_ssl_version and SSL_set_ssl_method 'const'.
678      [Nils Larsch]
679
680   *) Modify CRL distribution points extension code to print out previously
681      unsupported fields. Enhance extension setting code to allow setting of
682      all fields.
683      [Steve Henson]
684
685   *) Add print and set support for Issuing Distribution Point CRL extension.
686      [Steve Henson]
687
688   *) Change 'Configure' script to enable Camellia by default.
689      [NTT]
690
691  Changes between 0.9.8g and 0.9.8h  [xx XXX xxxx]
692
693   *) Clear error queue in SSL_CTX_use_certificate_chain_file()
694
695      Clear the error queue to ensure that error entries left from
696      older function calls do not interfere with the correct operation.
697      [Lutz Jaenicke, Erik de Castro Lopo]
698
699   *) Remove root CA certificates of commercial CAs:
700
701      The OpenSSL project does not recommend any specific CA and does not
702      have any policy with respect to including or excluding any CA.
703      Therefore it does not make any sense to ship an arbitrary selection
704      of root CA certificates with the OpenSSL software.
705      [Lutz Jaenicke]
706
707   *) RSA OAEP patches to fix two separate invalid memory reads.
708      The first one involves inputs when 'lzero' is greater than
709      'SHA_DIGEST_LENGTH' (it would read about SHA_DIGEST_LENGTH bytes
710      before the beginning of from). The second one involves inputs where
711      the 'db' section contains nothing but zeroes (there is a one-byte
712      invalid read after the end of 'db').
713      [Ivan Nestlerode <inestlerode@us.ibm.com>]
714   
715   *) Add TLS session ticket callback. This allows an application to set
716      TLS ticket cipher and HMAC keys rather than relying on hardcoded fixed
717      values. This is useful for key rollover for example where several key
718      sets may exist with different names.
719      [Steve Henson]
720
721   *) Reverse ENGINE-internal logic for caching default ENGINE handles.
722      This was broken until now in 0.9.8 releases, such that the only way
723      a registered ENGINE could be used (assuming it initialises
724      successfully on the host) was to explicitly set it as the default
725      for the relevant algorithms. This is in contradiction with 0.9.7
726      behaviour and the documentation. With this fix, when an ENGINE is
727      registered into a given algorithm's table of implementations, the
728      'uptodate' flag is reset so that auto-discovery will be used next
729      time a new context for that algorithm attempts to select an
730      implementation.
731      [Ian Lister (tweaked by Geoff Thorpe)]
732
733   *) Update the GMP engine glue to do direct copies between BIGNUM and
734      mpz_t when openssl and GMP use the same limb size. Otherwise the
735      existing "conversion via a text string export" trick is still used.
736      [Paul Sheer <paulsheer@gmail.com>, Geoff Thorpe]
737
738   *) Zlib compression BIO. This is a filter BIO which compressed and
739      uncompresses any data passed through it.
740      [Steve Henson]
741
742   *) Add AES_wrap_key() and AES_unwrap_key() functions to implement
743      RFC3394 compatible AES key wrapping.
744      [Steve Henson]
745
746   *) Add utility functions to handle ASN1 structures. ASN1_STRING_set0():
747      sets string data without copying. X509_ALGOR_set0() and
748      X509_ALGOR_get0(): set and retrieve X509_ALGOR (AlgorithmIdentifier)
749      data. Attribute function X509at_get0_data_by_OBJ(): retrieves data
750      from an X509_ATTRIBUTE structure optionally checking it occurs only
751      once. ASN1_TYPE_set1(): set and ASN1_TYPE structure copying supplied
752      data.
753      [Steve Henson]
754
755   *) Fix BN flag handling in RSA_eay_mod_exp() and BN_MONT_CTX_set()
756      to get the expected BN_FLG_CONSTTIME behavior.
757      [Bodo Moeller (Google)]
758   
759   *) Netware support:
760
761      - fixed wrong usage of ioctlsocket() when build for LIBC BSD sockets
762      - fixed do_tests.pl to run the test suite with CLIB builds too (CLIB_OPT)
763      - added some more tests to do_tests.pl
764      - fixed RunningProcess usage so that it works with newer LIBC NDKs too
765      - removed usage of BN_LLONG for CLIB builds to avoid runtime dependency
766      - added new Configure targets netware-clib-bsdsock, netware-clib-gcc,
767        netware-clib-bsdsock-gcc, netware-libc-bsdsock-gcc
768      - various changes to netware.pl to enable gcc-cross builds on Win32
769        platform
770      - changed crypto/bio/b_sock.c to work with macro functions (CLIB BSD)
771      - various changes to fix missing prototype warnings
772      - fixed x86nasm.pl to create correct asm files for NASM COFF output
773      - added AES, WHIRLPOOL and CPUID assembler code to build files
774      - added missing AES assembler make rules to mk1mf.pl
775      - fixed order of includes in apps/ocsp.c so that e_os.h settings apply
776      [Guenter Knauf <eflash@gmx.net>]
777
778   *) Implement certificate status request TLS extension defined in RFC3546.
779      A client can set the appropriate parameters and receive the encoded
780      OCSP response via a callback. A server can query the supplied parameters
781      and set the encoded OCSP response in the callback. Add simplified examples
782      to s_client and s_server.
783      [Steve Henson]
784
785  Changes between 0.9.8f and 0.9.8g  [19 Oct 2007]
786
787   *) Fix various bugs:
788      + Binary incompatibility of ssl_ctx_st structure
789      + DTLS interoperation with non-compliant servers
790      + Don't call get_session_cb() without proposed session
791      + Fix ia64 assembler code
792      [Andy Polyakov, Steve Henson]
793
794  Changes between 0.9.8e and 0.9.8f  [11 Oct 2007]
795
796   *) DTLS Handshake overhaul. There were longstanding issues with
797      OpenSSL DTLS implementation, which were making it impossible for
798      RFC 4347 compliant client to communicate with OpenSSL server.
799      Unfortunately just fixing these incompatibilities would "cut off"
800      pre-0.9.8f clients. To allow for hassle free upgrade post-0.9.8e
801      server keeps tolerating non RFC compliant syntax. The opposite is
802      not true, 0.9.8f client can not communicate with earlier server.
803      This update even addresses CVE-2007-4995.
804      [Andy Polyakov]
805
806   *) Changes to avoid need for function casts in OpenSSL: some compilers
807      (gcc 4.2 and later) reject their use.
808      [Kurt Roeckx <kurt@roeckx.be>, Peter Hartley <pdh@utter.chaos.org.uk>,
809       Steve Henson]
810   
811   *) Add RFC4507 support to OpenSSL. This includes the corrections in
812      RFC4507bis. The encrypted ticket format is an encrypted encoded
813      SSL_SESSION structure, that way new session features are automatically
814      supported.
815
816      If a client application caches session in an SSL_SESSION structure
817      support is transparent because tickets are now stored in the encoded
818      SSL_SESSION.
819      
820      The SSL_CTX structure automatically generates keys for ticket
821      protection in servers so again support should be possible
822      with no application modification.
823
824      If a client or server wishes to disable RFC4507 support then the option
825      SSL_OP_NO_TICKET can be set.
826
827      Add a TLS extension debugging callback to allow the contents of any client
828      or server extensions to be examined.
829
830      This work was sponsored by Google.
831      [Steve Henson]
832
833   *) Add initial support for TLS extensions, specifically for the server_name
834      extension so far.  The SSL_SESSION, SSL_CTX, and SSL data structures now
835      have new members for a host name.  The SSL data structure has an
836      additional member SSL_CTX *initial_ctx so that new sessions can be
837      stored in that context to allow for session resumption, even after the
838      SSL has been switched to a new SSL_CTX in reaction to a client's
839      server_name extension.
840
841      New functions (subject to change):
842
843          SSL_get_servername()
844          SSL_get_servername_type()
845          SSL_set_SSL_CTX()
846
847      New CTRL codes and macros (subject to change):
848
849          SSL_CTRL_SET_TLSEXT_SERVERNAME_CB
850                                  - SSL_CTX_set_tlsext_servername_callback()
851          SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG
852                                       - SSL_CTX_set_tlsext_servername_arg()
853          SSL_CTRL_SET_TLSEXT_HOSTNAME           - SSL_set_tlsext_host_name()
854
855      openssl s_client has a new '-servername ...' option.
856
857      openssl s_server has new options '-servername_host ...', '-cert2 ...',
858      '-key2 ...', '-servername_fatal' (subject to change).  This allows
859      testing the HostName extension for a specific single host name ('-cert'
860      and '-key' remain fallbacks for handshakes without HostName
861      negotiation).  If the unrecogninzed_name alert has to be sent, this by
862      default is a warning; it becomes fatal with the '-servername_fatal'
863      option.
864
865      [Peter Sylvester,  Remy Allais, Christophe Renou, Steve Henson]
866
867   *) Add AES and SSE2 assembly language support to VC++ build.
868      [Steve Henson]
869
870   *) Mitigate attack on final subtraction in Montgomery reduction.
871      [Andy Polyakov]
872
873   *) Fix crypto/ec/ec_mult.c to work properly with scalars of value 0
874      (which previously caused an internal error).
875      [Bodo Moeller]
876
877   *) Squeeze another 10% out of IGE mode when in != out.
878      [Ben Laurie]
879
880   *) AES IGE mode speedup.
881      [Dean Gaudet (Google)]
882
883   *) Add the Korean symmetric 128-bit cipher SEED (see
884      http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp) and
885      add SEED ciphersuites from RFC 4162:
886
887         TLS_RSA_WITH_SEED_CBC_SHA      =  "SEED-SHA"
888         TLS_DHE_DSS_WITH_SEED_CBC_SHA  =  "DHE-DSS-SEED-SHA"
889         TLS_DHE_RSA_WITH_SEED_CBC_SHA  =  "DHE-RSA-SEED-SHA"
890         TLS_DH_anon_WITH_SEED_CBC_SHA  =  "ADH-SEED-SHA"
891
892      To minimize changes between patchlevels in the OpenSSL 0.9.8
893      series, SEED remains excluded from compilation unless OpenSSL
894      is configured with 'enable-seed'.
895      [KISA, Bodo Moeller]
896
897   *) Mitigate branch prediction attacks, which can be practical if a
898      single processor is shared, allowing a spy process to extract
899      information.  For detailed background information, see
900      http://eprint.iacr.org/2007/039 (O. Aciicmez, S. Gueron,
901      J.-P. Seifert, "New Branch Prediction Vulnerabilities in OpenSSL
902      and Necessary Software Countermeasures").  The core of the change
903      are new versions BN_div_no_branch() and
904      BN_mod_inverse_no_branch() of BN_div() and BN_mod_inverse(),
905      respectively, which are slower, but avoid the security-relevant
906      conditional branches.  These are automatically called by BN_div()
907      and BN_mod_inverse() if the flag BN_FLG_CONSTTIME is set for one
908      of the input BIGNUMs.  Also, BN_is_bit_set() has been changed to
909      remove a conditional branch.
910
911      BN_FLG_CONSTTIME is the new name for the previous
912      BN_FLG_EXP_CONSTTIME flag, since it now affects more than just
913      modular exponentiation.  (Since OpenSSL 0.9.7h, setting this flag
914      in the exponent causes BN_mod_exp_mont() to use the alternative
915      implementation in BN_mod_exp_mont_consttime().)  The old name
916      remains as a deprecated alias.
917
918      Similary, RSA_FLAG_NO_EXP_CONSTTIME is replaced by a more general
919      RSA_FLAG_NO_CONSTTIME flag since the RSA implementation now uses
920      constant-time implementations for more than just exponentiation.
921      Here too the old name is kept as a deprecated alias.
922
923      BN_BLINDING_new() will now use BN_dup() for the modulus so that
924      the BN_BLINDING structure gets an independent copy of the
925      modulus.  This means that the previous "BIGNUM *m" argument to
926      BN_BLINDING_new() and to BN_BLINDING_create_param() now
927      essentially becomes "const BIGNUM *m", although we can't actually
928      change this in the header file before 0.9.9.  It allows
929      RSA_setup_blinding() to use BN_with_flags() on the modulus to
930      enable BN_FLG_CONSTTIME.
931
932      [Matthew D Wood (Intel Corp)]
933
934   *) In the SSL/TLS server implementation, be strict about session ID
935      context matching (which matters if an application uses a single
936      external cache for different purposes).  Previously,
937      out-of-context reuse was forbidden only if SSL_VERIFY_PEER was
938      set.  This did ensure strict client verification, but meant that,
939      with applications using a single external cache for quite
940      different requirements, clients could circumvent ciphersuite
941      restrictions for a given session ID context by starting a session
942      in a different context.
943      [Bodo Moeller]
944
945   *) Include "!eNULL" in SSL_DEFAULT_CIPHER_LIST to make sure that
946      a ciphersuite string such as "DEFAULT:RSA" cannot enable
947      authentication-only ciphersuites.
948      [Bodo Moeller]
949
950  Changes between 0.9.8d and 0.9.8e  [23 Feb 2007]
951
952   *) Since AES128 and AES256 (and similarly Camellia128 and
953      Camellia256) share a single mask bit in the logic of
954      ssl/ssl_ciph.c, the code for masking out disabled ciphers needs a
955      kludge to work properly if AES128 is available and AES256 isn't
956      (or if Camellia128 is available and Camellia256 isn't).
957      [Victor Duchovni]
958
959   *) Fix the BIT STRING encoding generated by crypto/ec/ec_asn1.c
960      (within i2d_ECPrivateKey, i2d_ECPKParameters, i2d_ECParameters):
961      When a point or a seed is encoded in a BIT STRING, we need to
962      prevent the removal of trailing zero bits to get the proper DER
963      encoding.  (By default, crypto/asn1/a_bitstr.c assumes the case
964      of a NamedBitList, for which trailing 0 bits need to be removed.)
965      [Bodo Moeller]
966
967   *) Have SSL/TLS server implementation tolerate "mismatched" record
968      protocol version while receiving ClientHello even if the
969      ClientHello is fragmented.  (The server can't insist on the
970      particular protocol version it has chosen before the ServerHello
971      message has informed the client about his choice.)
972      [Bodo Moeller]
973
974   *) Add RFC 3779 support.
975      [Rob Austein for ARIN, Ben Laurie]
976
977   *) Load error codes if they are not already present instead of using a
978      static variable. This allows them to be cleanly unloaded and reloaded.
979      Improve header file function name parsing.
980      [Steve Henson]
981
982   *) extend SMTP and IMAP protocol emulation in s_client to use EHLO
983      or CAPABILITY handshake as required by RFCs.
984      [Goetz Babin-Ebell]
985
986  Changes between 0.9.8c and 0.9.8d  [28 Sep 2006]
987
988   *) Introduce limits to prevent malicious keys being able to
989      cause a denial of service.  (CVE-2006-2940)
990      [Steve Henson, Bodo Moeller]
991
992   *) Fix ASN.1 parsing of certain invalid structures that can result
993      in a denial of service.  (CVE-2006-2937)  [Steve Henson]
994
995   *) Fix buffer overflow in SSL_get_shared_ciphers() function. 
996      (CVE-2006-3738) [Tavis Ormandy and Will Drewry, Google Security Team]
997
998   *) Fix SSL client code which could crash if connecting to a
999      malicious SSLv2 server.  (CVE-2006-4343)
1000      [Tavis Ormandy and Will Drewry, Google Security Team]
1001
1002   *) Since 0.9.8b, ciphersuite strings naming explicit ciphersuites
1003      match only those.  Before that, "AES256-SHA" would be interpreted
1004      as a pattern and match "AES128-SHA" too (since AES128-SHA got
1005      the same strength classification in 0.9.7h) as we currently only
1006      have a single AES bit in the ciphersuite description bitmap.
1007      That change, however, also applied to ciphersuite strings such as
1008      "RC4-MD5" that intentionally matched multiple ciphersuites --
1009      namely, SSL 2.0 ciphersuites in addition to the more common ones
1010      from SSL 3.0/TLS 1.0.
1011
1012      So we change the selection algorithm again: Naming an explicit
1013      ciphersuite selects this one ciphersuite, and any other similar
1014      ciphersuite (same bitmap) from *other* protocol versions.
1015      Thus, "RC4-MD5" again will properly select both the SSL 2.0
1016      ciphersuite and the SSL 3.0/TLS 1.0 ciphersuite.
1017
1018      Since SSL 2.0 does not have any ciphersuites for which the
1019      128/256 bit distinction would be relevant, this works for now.
1020      The proper fix will be to use different bits for AES128 and
1021      AES256, which would have avoided the problems from the beginning;
1022      however, bits are scarce, so we can only do this in a new release
1023      (not just a patchlevel) when we can change the SSL_CIPHER
1024      definition to split the single 'unsigned long mask' bitmap into
1025      multiple values to extend the available space.
1026
1027      [Bodo Moeller]
1028
1029  Changes between 0.9.8b and 0.9.8c  [05 Sep 2006]
1030
1031   *) Avoid PKCS #1 v1.5 signature attack discovered by Daniel Bleichenbacher
1032      (CVE-2006-4339)  [Ben Laurie and Google Security Team]
1033
1034   *) Add AES IGE and biIGE modes.
1035      [Ben Laurie]
1036
1037   *) Change the Unix randomness entropy gathering to use poll() when
1038      possible instead of select(), since the latter has some
1039      undesirable limitations.
1040      [Darryl Miles via Richard Levitte and Bodo Moeller]
1041
1042   *) Disable "ECCdraft" ciphersuites more thoroughly.  Now special
1043      treatment in ssl/ssl_ciph.s makes sure that these ciphersuites
1044      cannot be implicitly activated as part of, e.g., the "AES" alias.
1045      However, please upgrade to OpenSSL 0.9.9[-dev] for
1046      non-experimental use of the ECC ciphersuites to get TLS extension
1047      support, which is required for curve and point format negotiation
1048      to avoid potential handshake problems.
1049      [Bodo Moeller]
1050
1051   *) Disable rogue ciphersuites:
1052
1053       - SSLv2 0x08 0x00 0x80 ("RC4-64-MD5")
1054       - SSLv3/TLSv1 0x00 0x61 ("EXP1024-RC2-CBC-MD5")
1055       - SSLv3/TLSv1 0x00 0x60 ("EXP1024-RC4-MD5")
1056
1057      The latter two were purportedly from
1058      draft-ietf-tls-56-bit-ciphersuites-0[01].txt, but do not really
1059      appear there.
1060
1061      Also deactivate the remaining ciphersuites from
1062      draft-ietf-tls-56-bit-ciphersuites-01.txt.  These are just as
1063      unofficial, and the ID has long expired.
1064      [Bodo Moeller]
1065
1066   *) Fix RSA blinding Heisenbug (problems sometimes occured on
1067      dual-core machines) and other potential thread-safety issues.
1068      [Bodo Moeller]
1069
1070   *) Add the symmetric cipher Camellia (128-bit, 192-bit, 256-bit key
1071      versions), which is now available for royalty-free use
1072      (see http://info.isl.ntt.co.jp/crypt/eng/info/chiteki.html).
1073      Also, add Camellia TLS ciphersuites from RFC 4132.
1074
1075      To minimize changes between patchlevels in the OpenSSL 0.9.8
1076      series, Camellia remains excluded from compilation unless OpenSSL
1077      is configured with 'enable-camellia'.
1078      [NTT]
1079
1080   *) Disable the padding bug check when compression is in use. The padding
1081      bug check assumes the first packet is of even length, this is not
1082      necessarily true if compresssion is enabled and can result in false
1083      positives causing handshake failure. The actual bug test is ancient
1084      code so it is hoped that implementations will either have fixed it by
1085      now or any which still have the bug do not support compression.
1086      [Steve Henson]
1087
1088  Changes between 0.9.8a and 0.9.8b  [04 May 2006]
1089
1090   *) When applying a cipher rule check to see if string match is an explicit
1091      cipher suite and only match that one cipher suite if it is.
1092      [Steve Henson]
1093
1094   *) Link in manifests for VC++ if needed.
1095      [Austin Ziegler <halostatue@gmail.com>]
1096
1097   *) Update support for ECC-based TLS ciphersuites according to
1098      draft-ietf-tls-ecc-12.txt with proposed changes (but without
1099      TLS extensions, which are supported starting with the 0.9.9
1100      branch, not in the OpenSSL 0.9.8 branch).
1101      [Douglas Stebila]
1102
1103   *) New functions EVP_CIPHER_CTX_new() and EVP_CIPHER_CTX_free() to support
1104      opaque EVP_CIPHER_CTX handling.
1105      [Steve Henson]
1106
1107   *) Fixes and enhancements to zlib compression code. We now only use
1108      "zlib1.dll" and use the default __cdecl calling convention on Win32
1109      to conform with the standards mentioned here:
1110            http://www.zlib.net/DLL_FAQ.txt
1111      Static zlib linking now works on Windows and the new --with-zlib-include
1112      --with-zlib-lib options to Configure can be used to supply the location
1113      of the headers and library. Gracefully handle case where zlib library
1114      can't be loaded.
1115      [Steve Henson]
1116
1117   *) Several fixes and enhancements to the OID generation code. The old code
1118      sometimes allowed invalid OIDs (1.X for X >= 40 for example), couldn't
1119      handle numbers larger than ULONG_MAX, truncated printing and had a
1120      non standard OBJ_obj2txt() behaviour.
1121      [Steve Henson]
1122
1123   *) Add support for building of engines under engine/ as shared libraries
1124      under VC++ build system.
1125      [Steve Henson]
1126
1127   *) Corrected the numerous bugs in the Win32 path splitter in DSO.
1128      Hopefully, we will not see any false combination of paths any more.
1129      [Richard Levitte]
1130
1131  Changes between 0.9.8 and 0.9.8a  [11 Oct 2005]
1132
1133   *) Remove the functionality of SSL_OP_MSIE_SSLV2_RSA_PADDING
1134      (part of SSL_OP_ALL).  This option used to disable the
1135      countermeasure against man-in-the-middle protocol-version
1136      rollback in the SSL 2.0 server implementation, which is a bad
1137      idea.  (CVE-2005-2969)
1138
1139      [Bodo Moeller; problem pointed out by Yutaka Oiwa (Research Center
1140      for Information Security, National Institute of Advanced Industrial
1141      Science and Technology [AIST], Japan)]
1142
1143   *) Add two function to clear and return the verify parameter flags.
1144      [Steve Henson]
1145
1146   *) Keep cipherlists sorted in the source instead of sorting them at
1147      runtime, thus removing the need for a lock.
1148      [Nils Larsch]
1149
1150   *) Avoid some small subgroup attacks in Diffie-Hellman.
1151      [Nick Mathewson and Ben Laurie]
1152
1153   *) Add functions for well-known primes.
1154      [Nick Mathewson]
1155
1156   *) Extended Windows CE support.
1157      [Satoshi Nakamura and Andy Polyakov]
1158
1159   *) Initialize SSL_METHOD structures at compile time instead of during
1160      runtime, thus removing the need for a lock.
1161      [Steve Henson]
1162
1163   *) Make PKCS7_decrypt() work even if no certificate is supplied by
1164      attempting to decrypt each encrypted key in turn. Add support to
1165      smime utility.
1166      [Steve Henson]
1167
1168  Changes between 0.9.7h and 0.9.8  [05 Jul 2005]
1169
1170   [NB: OpenSSL 0.9.7i and later 0.9.7 patch levels were released after
1171   OpenSSL 0.9.8.]
1172
1173   *) Add libcrypto.pc and libssl.pc for those who feel they need them.
1174      [Richard Levitte]
1175
1176   *) Change CA.sh and CA.pl so they don't bundle the CSR and the private
1177      key into the same file any more.
1178      [Richard Levitte]
1179
1180   *) Add initial support for Win64, both IA64 and AMD64/x64 flavors.
1181      [Andy Polyakov]
1182
1183   *) Add -utf8 command line and config file option to 'ca'.
1184      [Stefan <stf@udoma.org]
1185
1186   *) Removed the macro des_crypt(), as it seems to conflict with some
1187      libraries.  Use DES_crypt().
1188      [Richard Levitte]
1189
1190   *) Correct naming of the 'chil' and '4758cca' ENGINEs. This
1191      involves renaming the source and generated shared-libs for
1192      both. The engines will accept the corrected or legacy ids
1193      ('ncipher' and '4758_cca' respectively) when binding. NB,
1194      this only applies when building 'shared'.
1195      [Corinna Vinschen <vinschen@redhat.com> and Geoff Thorpe]
1196
1197   *) Add attribute functions to EVP_PKEY structure. Modify
1198      PKCS12_create() to recognize a CSP name attribute and
1199      use it. Make -CSP option work again in pkcs12 utility.
1200      [Steve Henson]
1201
1202   *) Add new functionality to the bn blinding code:
1203      - automatic re-creation of the BN_BLINDING parameters after
1204        a fixed number of uses (currently 32)
1205      - add new function for parameter creation
1206      - introduce flags to control the update behaviour of the
1207        BN_BLINDING parameters
1208      - hide BN_BLINDING structure
1209      Add a second BN_BLINDING slot to the RSA structure to improve
1210      performance when a single RSA object is shared among several
1211      threads.
1212      [Nils Larsch]
1213
1214   *) Add support for DTLS.
1215      [Nagendra Modadugu <nagendra@cs.stanford.edu> and Ben Laurie]
1216
1217   *) Add support for DER encoded private keys (SSL_FILETYPE_ASN1)
1218      to SSL_CTX_use_PrivateKey_file() and SSL_use_PrivateKey_file()
1219      [Walter Goulet]
1220
1221   *) Remove buggy and incompletet DH cert support from
1222      ssl/ssl_rsa.c and ssl/s3_both.c
1223      [Nils Larsch]
1224
1225   *) Use SHA-1 instead of MD5 as the default digest algorithm for
1226      the apps/openssl applications.
1227      [Nils Larsch]
1228
1229   *) Compile clean with "-Wall -Wmissing-prototypes
1230      -Wstrict-prototypes -Wmissing-declarations -Werror". Currently
1231      DEBUG_SAFESTACK must also be set.
1232      [Ben Laurie]
1233
1234   *) Change ./Configure so that certain algorithms can be disabled by default.
1235      The new counterpiece to "no-xxx" is "enable-xxx".
1236
1237      The patented RC5 and MDC2 algorithms will now be disabled unless
1238      "enable-rc5" and "enable-mdc2", respectively, are specified.
1239
1240      (IDEA remains enabled despite being patented.  This is because IDEA
1241      is frequently required for interoperability, and there is no license
1242      fee for non-commercial use.  As before, "no-idea" can be used to
1243      avoid this algorithm.)
1244
1245      [Bodo Moeller]
1246
1247   *) Add processing of proxy certificates (see RFC 3820).  This work was
1248      sponsored by KTH (The Royal Institute of Technology in Stockholm) and
1249      EGEE (Enabling Grids for E-science in Europe).
1250      [Richard Levitte]
1251
1252   *) RC4 performance overhaul on modern architectures/implementations, such
1253      as Intel P4, IA-64 and AMD64.
1254      [Andy Polyakov]
1255
1256   *) New utility extract-section.pl. This can be used specify an alternative
1257      section number in a pod file instead of having to treat each file as
1258      a separate case in Makefile. This can be done by adding two lines to the
1259      pod file:
1260
1261      =for comment openssl_section:XXX
1262
1263      The blank line is mandatory.
1264
1265      [Steve Henson]
1266
1267   *) New arguments -certform, -keyform and -pass for s_client and s_server
1268      to allow alternative format key and certificate files and passphrase
1269      sources.
1270      [Steve Henson]
1271
1272   *) New structure X509_VERIFY_PARAM which combines current verify parameters,
1273      update associated structures and add various utility functions.
1274
1275      Add new policy related verify parameters, include policy checking in 
1276      standard verify code. Enhance 'smime' application with extra parameters
1277      to support policy checking and print out.
1278      [Steve Henson]
1279
1280   *) Add a new engine to support VIA PadLock ACE extensions in the VIA C3
1281      Nehemiah processors. These extensions support AES encryption in hardware
1282      as well as RNG (though RNG support is currently disabled).
1283      [Michal Ludvig <michal@logix.cz>, with help from Andy Polyakov]
1284
1285   *) Deprecate BN_[get|set]_params() functions (they were ignored internally).
1286      [Geoff Thorpe]
1287
1288   *) New FIPS 180-2 algorithms, SHA-224/-256/-384/-512 are implemented.
1289      [Andy Polyakov and a number of other people]
1290
1291   *) Improved PowerPC platform support. Most notably BIGNUM assembler
1292      implementation contributed by IBM.
1293      [Suresh Chari, Peter Waltenberg, Andy Polyakov]
1294
1295   *) The new 'RSA_generate_key_ex' function now takes a BIGNUM for the public
1296      exponent rather than 'unsigned long'. There is a corresponding change to
1297      the new 'rsa_keygen' element of the RSA_METHOD structure.
1298      [Jelte Jansen, Geoff Thorpe]
1299
1300   *) Functionality for creating the initial serial number file is now
1301      moved from CA.pl to the 'ca' utility with a new option -create_serial.
1302
1303      (Before OpenSSL 0.9.7e, CA.pl used to initialize the serial
1304      number file to 1, which is bound to cause problems.  To avoid
1305      the problems while respecting compatibility between different 0.9.7
1306      patchlevels, 0.9.7e  employed 'openssl x509 -next_serial' in
1307      CA.pl for serial number initialization.  With the new release 0.9.8,
1308      we can fix the problem directly in the 'ca' utility.)
1309      [Steve Henson]
1310
1311   *) Reduced header interdepencies by declaring more opaque objects in
1312      ossl_typ.h. As a consequence, including some headers (eg. engine.h) will
1313      give fewer recursive includes, which could break lazy source code - so
1314      this change is covered by the OPENSSL_NO_DEPRECATED symbol. As always,
1315      developers should define this symbol when building and using openssl to
1316      ensure they track the recommended behaviour, interfaces, [etc], but
1317      backwards-compatible behaviour prevails when this isn't defined.
1318      [Geoff Thorpe]
1319
1320   *) New function X509_POLICY_NODE_print() which prints out policy nodes.
1321      [Steve Henson]
1322
1323   *) Add new EVP function EVP_CIPHER_CTX_rand_key and associated functionality.
1324      This will generate a random key of the appropriate length based on the 
1325      cipher context. The EVP_CIPHER can provide its own random key generation
1326      routine to support keys of a specific form. This is used in the des and 
1327      3des routines to generate a key of the correct parity. Update S/MIME
1328      code to use new functions and hence generate correct parity DES keys.
1329      Add EVP_CHECK_DES_KEY #define to return an error if the key is not 
1330      valid (weak or incorrect parity).
1331      [Steve Henson]
1332
1333   *) Add a local set of CRLs that can be used by X509_verify_cert() as well
1334      as looking them up. This is useful when the verified structure may contain
1335      CRLs, for example PKCS#7 signedData. Modify PKCS7_verify() to use any CRLs
1336      present unless the new PKCS7_NO_CRL flag is asserted.
1337      [Steve Henson]
1338
1339   *) Extend ASN1 oid configuration module. It now additionally accepts the
1340      syntax:
1341
1342      shortName = some long name, 1.2.3.4
1343      [Steve Henson]
1344
1345   *) Reimplemented the BN_CTX implementation. There is now no more static
1346      limitation on the number of variables it can handle nor the depth of the
1347      "stack" handling for BN_CTX_start()/BN_CTX_end() pairs. The stack
1348      information can now expand as required, and rather than having a single
1349      static array of bignums, BN_CTX now uses a linked-list of such arrays
1350      allowing it to expand on demand whilst maintaining the usefulness of
1351      BN_CTX's "bundling".
1352      [Geoff Thorpe]
1353
1354   *) Add a missing BN_CTX parameter to the 'rsa_mod_exp' callback in RSA_METHOD
1355      to allow all RSA operations to function using a single BN_CTX.
1356      [Geoff Thorpe]
1357
1358   *) Preliminary support for certificate policy evaluation and checking. This
1359      is initially intended to pass the tests outlined in "Conformance Testing
1360      of Relying Party Client Certificate Path Processing Logic" v1.07.
1361      [Steve Henson]
1362
1363   *) bn_dup_expand() has been deprecated, it was introduced in 0.9.7 and
1364      remained unused and not that useful. A variety of other little bignum
1365      tweaks and fixes have also been made continuing on from the audit (see
1366      below).
1367      [Geoff Thorpe]
1368
1369   *) Constify all or almost all d2i, c2i, s2i and r2i functions, along with
1370      associated ASN1, EVP and SSL functions and old ASN1 macros.
1371      [Richard Levitte]
1372
1373   *) BN_zero() only needs to set 'top' and 'neg' to zero for correct results,
1374      and this should never fail. So the return value from the use of
1375      BN_set_word() (which can fail due to needless expansion) is now deprecated;
1376      if OPENSSL_NO_DEPRECATED is defined, BN_zero() is a void macro.
1377      [Geoff Thorpe]
1378
1379   *) BN_CTX_get() should return zero-valued bignums, providing the same
1380      initialised value as BN_new().
1381      [Geoff Thorpe, suggested by Ulf Möller]
1382
1383   *) Support for inhibitAnyPolicy certificate extension.
1384      [Steve Henson]
1385
1386   *) An audit of the BIGNUM code is underway, for which debugging code is
1387      enabled when BN_DEBUG is defined. This makes stricter enforcements on what
1388      is considered valid when processing BIGNUMs, and causes execution to
1389      assert() when a problem is discovered. If BN_DEBUG_RAND is defined,
1390      further steps are taken to deliberately pollute unused data in BIGNUM
1391      structures to try and expose faulty code further on. For now, openssl will
1392      (in its default mode of operation) continue to tolerate the inconsistent
1393      forms that it has tolerated in the past, but authors and packagers should
1394      consider trying openssl and their own applications when compiled with
1395      these debugging symbols defined. It will help highlight potential bugs in
1396      their own code, and will improve the test coverage for OpenSSL itself. At
1397      some point, these tighter rules will become openssl's default to improve
1398      maintainability, though the assert()s and other overheads will remain only
1399      in debugging configurations. See bn.h for more details.
1400      [Geoff Thorpe, Nils Larsch, Ulf Möller]
1401
1402   *) BN_CTX_init() has been deprecated, as BN_CTX is an opaque structure
1403      that can only be obtained through BN_CTX_new() (which implicitly
1404      initialises it). The presence of this function only made it possible
1405      to overwrite an existing structure (and cause memory leaks).
1406      [Geoff Thorpe]
1407
1408   *) Because of the callback-based approach for implementing LHASH as a
1409      template type, lh_insert() adds opaque objects to hash-tables and
1410      lh_doall() or lh_doall_arg() are typically used with a destructor callback
1411      to clean up those corresponding objects before destroying the hash table
1412      (and losing the object pointers). So some over-zealous constifications in
1413      LHASH have been relaxed so that lh_insert() does not take (nor store) the
1414      objects as "const" and the lh_doall[_arg] callback wrappers are not
1415      prototyped to have "const" restrictions on the object pointers they are
1416      given (and so aren't required to cast them away any more).
1417      [Geoff Thorpe]
1418
1419   *) The tmdiff.h API was so ugly and minimal that our own timing utility
1420      (speed) prefers to use its own implementation. The two implementations
1421      haven't been consolidated as yet (volunteers?) but the tmdiff API has had
1422      its object type properly exposed (MS_TM) instead of casting to/from "char
1423      *". This may still change yet if someone realises MS_TM and "ms_time_***"
1424      aren't necessarily the greatest nomenclatures - but this is what was used
1425      internally to the implementation so I've used that for now.
1426      [Geoff Thorpe]
1427
1428   *) Ensure that deprecated functions do not get compiled when
1429      OPENSSL_NO_DEPRECATED is defined. Some "openssl" subcommands and a few of
1430      the self-tests were still using deprecated key-generation functions so
1431      these have been updated also.
1432      [Geoff Thorpe]
1433
1434   *) Reorganise PKCS#7 code to separate the digest location functionality
1435      into PKCS7_find_digest(), digest addtion into PKCS7_bio_add_digest().
1436      New function PKCS7_set_digest() to set the digest type for PKCS#7
1437      digestedData type. Add additional code to correctly generate the
1438      digestedData type and add support for this type in PKCS7 initialization
1439      functions.
1440      [Steve Henson]
1441
1442   *) New function PKCS7_set0_type_other() this initializes a PKCS7 
1443      structure of type "other".
1444      [Steve Henson]
1445
1446   *) Fix prime generation loop in crypto/bn/bn_prime.pl by making
1447      sure the loop does correctly stop and breaking ("division by zero")
1448      modulus operations are not performed. The (pre-generated) prime
1449      table crypto/bn/bn_prime.h was already correct, but it could not be
1450      re-generated on some platforms because of the "division by zero"
1451      situation in the script.
1452      [Ralf S. Engelschall]
1453
1454   *) Update support for ECC-based TLS ciphersuites according to
1455      draft-ietf-tls-ecc-03.txt: the KDF1 key derivation function with
1456      SHA-1 now is only used for "small" curves (where the
1457      representation of a field element takes up to 24 bytes); for
1458      larger curves, the field element resulting from ECDH is directly
1459      used as premaster secret.
1460      [Douglas Stebila (Sun Microsystems Laboratories)]
1461
1462   *) Add code for kP+lQ timings to crypto/ec/ectest.c, and add SEC2
1463      curve secp160r1 to the tests.
1464      [Douglas Stebila (Sun Microsystems Laboratories)]
1465
1466   *) Add the possibility to load symbols globally with DSO.
1467      [Götz Babin-Ebell <babin-ebell@trustcenter.de> via Richard Levitte]
1468
1469   *) Add the functions ERR_set_mark() and ERR_pop_to_mark() for better
1470      control of the error stack.
1471      [Richard Levitte]
1472
1473   *) Add support for STORE in ENGINE.
1474      [Richard Levitte]
1475
1476   *) Add the STORE type.  The intention is to provide a common interface
1477      to certificate and key stores, be they simple file-based stores, or
1478      HSM-type store, or LDAP stores, or...
1479      NOTE: The code is currently UNTESTED and isn't really used anywhere.
1480      [Richard Levitte]
1481
1482   *) Add a generic structure called OPENSSL_ITEM.  This can be used to
1483      pass a list of arguments to any function as well as provide a way
1484      for a function to pass data back to the caller.
1485      [Richard Levitte]
1486
1487   *) Add the functions BUF_strndup() and BUF_memdup().  BUF_strndup()
1488      works like BUF_strdup() but can be used to duplicate a portion of
1489      a string.  The copy gets NUL-terminated.  BUF_memdup() duplicates
1490      a memory area.
1491      [Richard Levitte]
1492
1493   *) Add the function sk_find_ex() which works like sk_find(), but will
1494      return an index to an element even if an exact match couldn't be
1495      found.  The index is guaranteed to point at the element where the
1496      searched-for key would be inserted to preserve sorting order.
1497      [Richard Levitte]
1498
1499   *) Add the function OBJ_bsearch_ex() which works like OBJ_bsearch() but
1500      takes an extra flags argument for optional functionality.  Currently,
1501      the following flags are defined:
1502
1503         OBJ_BSEARCH_VALUE_ON_NOMATCH
1504         This one gets OBJ_bsearch_ex() to return a pointer to the first
1505         element where the comparing function returns a negative or zero
1506         number.
1507
1508         OBJ_BSEARCH_FIRST_VALUE_ON_MATCH
1509         This one gets OBJ_bsearch_ex() to return a pointer to the first
1510         element where the comparing function returns zero.  This is useful
1511         if there are more than one element where the comparing function
1512         returns zero.
1513      [Richard Levitte]
1514
1515   *) Make it possible to create self-signed certificates with 'openssl ca'
1516      in such a way that the self-signed certificate becomes part of the
1517      CA database and uses the same mechanisms for serial number generation
1518      as all other certificate signing.  The new flag '-selfsign' enables
1519      this functionality.  Adapt CA.sh and CA.pl.in.
1520      [Richard Levitte]
1521
1522   *) Add functionality to check the public key of a certificate request
1523      against a given private.  This is useful to check that a certificate
1524      request can be signed by that key (self-signing).
1525      [Richard Levitte]
1526
1527   *) Make it possible to have multiple active certificates with the same
1528      subject in the CA index file.  This is done only if the keyword
1529      'unique_subject' is set to 'no' in the main CA section (default
1530      if 'CA_default') of the configuration file.  The value is saved
1531      with the database itself in a separate index attribute file,
1532      named like the index file with '.attr' appended to the name.
1533      [Richard Levitte]
1534
1535   *) Generate muti valued AVAs using '+' notation in config files for
1536      req and dirName.
1537      [Steve Henson]
1538
1539   *) Support for nameConstraints certificate extension.
1540      [Steve Henson]
1541
1542   *) Support for policyConstraints certificate extension.
1543      [Steve Henson]
1544
1545   *) Support for policyMappings certificate extension.
1546      [Steve Henson]
1547
1548   *) Make sure the default DSA_METHOD implementation only uses its
1549      dsa_mod_exp() and/or bn_mod_exp() handlers if they are non-NULL,
1550      and change its own handlers to be NULL so as to remove unnecessary
1551      indirection. This lets alternative implementations fallback to the
1552      default implementation more easily.
1553      [Geoff Thorpe]
1554
1555   *) Support for directoryName in GeneralName related extensions
1556      in config files.
1557      [Steve Henson]
1558
1559   *) Make it possible to link applications using Makefile.shared.
1560      Make that possible even when linking against static libraries!
1561      [Richard Levitte]
1562
1563   *) Support for single pass processing for S/MIME signing. This now
1564      means that S/MIME signing can be done from a pipe, in addition
1565      cleartext signing (multipart/signed type) is effectively streaming
1566      and the signed data does not need to be all held in memory.
1567
1568      This is done with a new flag PKCS7_STREAM. When this flag is set
1569      PKCS7_sign() only initializes the PKCS7 structure and the actual signing
1570      is done after the data is output (and digests calculated) in
1571      SMIME_write_PKCS7().
1572      [Steve Henson]
1573
1574   *) Add full support for -rpath/-R, both in shared libraries and
1575      applications, at least on the platforms where it's known how
1576      to do it.
1577      [Richard Levitte]
1578
1579   *) In crypto/ec/ec_mult.c, implement fast point multiplication with
1580      precomputation, based on wNAF splitting: EC_GROUP_precompute_mult()
1581      will now compute a table of multiples of the generator that
1582      makes subsequent invocations of EC_POINTs_mul() or EC_POINT_mul()
1583      faster (notably in the case of a single point multiplication,
1584      scalar * generator).
1585      [Nils Larsch, Bodo Moeller]
1586
1587   *) IPv6 support for certificate extensions. The various extensions
1588      which use the IP:a.b.c.d can now take IPv6 addresses using the
1589      formats of RFC1884 2.2 . IPv6 addresses are now also displayed
1590      correctly.
1591      [Steve Henson]
1592
1593   *) Added an ENGINE that implements RSA by performing private key
1594      exponentiations with the GMP library. The conversions to and from
1595      GMP's mpz_t format aren't optimised nor are any montgomery forms
1596      cached, and on x86 it appears OpenSSL's own performance has caught up.
1597      However there are likely to be other architectures where GMP could
1598      provide a boost. This ENGINE is not built in by default, but it can be
1599      specified at Configure time and should be accompanied by the necessary
1600      linker additions, eg;
1601          ./config -DOPENSSL_USE_GMP -lgmp
1602      [Geoff Thorpe]
1603
1604   *) "openssl engine" will not display ENGINE/DSO load failure errors when
1605      testing availability of engines with "-t" - the old behaviour is
1606      produced by increasing the feature's verbosity with "-tt".
1607      [Geoff Thorpe]
1608
1609   *) ECDSA routines: under certain error conditions uninitialized BN objects
1610      could be freed. Solution: make sure initialization is performed early
1611      enough. (Reported and fix supplied by Nils Larsch <nla@trustcenter.de>
1612      via PR#459)
1613      [Lutz Jaenicke]
1614
1615   *) Key-generation can now be implemented in RSA_METHOD, DSA_METHOD
1616      and DH_METHOD (eg. by ENGINE implementations) to override the normal
1617      software implementations. For DSA and DH, parameter generation can
1618      also be overriden by providing the appropriate method callbacks.
1619      [Geoff Thorpe]
1620
1621   *) Change the "progress" mechanism used in key-generation and
1622      primality testing to functions that take a new BN_GENCB pointer in
1623      place of callback/argument pairs. The new API functions have "_ex"
1624      postfixes and the older functions are reimplemented as wrappers for
1625      the new ones. The OPENSSL_NO_DEPRECATED symbol can be used to hide
1626      declarations of the old functions to help (graceful) attempts to
1627      migrate to the new functions. Also, the new key-generation API
1628      functions operate on a caller-supplied key-structure and return
1629      success/failure rather than returning a key or NULL - this is to
1630      help make "keygen" another member function of RSA_METHOD etc.
1631
1632      Example for using the new callback interface:
1633
1634           int (*my_callback)(int a, int b, BN_GENCB *cb) = ...;
1635           void *my_arg = ...;
1636           BN_GENCB my_cb;
1637
1638           BN_GENCB_set(&my_cb, my_callback, my_arg);
1639
1640           return BN_is_prime_ex(some_bignum, BN_prime_checks, NULL, &cb);
1641           /* For the meaning of a, b in calls to my_callback(), see the
1642            * documentation of the function that calls the callback.
1643            * cb will point to my_cb; my_arg can be retrieved as cb->arg.
1644            * my_callback should return 1 if it wants BN_is_prime_ex()
1645            * to continue, or 0 to stop.
1646            */
1647
1648      [Geoff Thorpe]
1649
1650   *) Change the ZLIB compression method to be stateful, and make it
1651      available to TLS with the number defined in 
1652      draft-ietf-tls-compression-04.txt.
1653      [Richard Levitte]
1654
1655   *) Add the ASN.1 structures and functions for CertificatePair, which
1656      is defined as follows (according to X.509_4thEditionDraftV6.pdf):
1657
1658      CertificatePair ::= SEQUENCE {
1659         forward         [0]     Certificate OPTIONAL,
1660         reverse         [1]     Certificate OPTIONAL,
1661         -- at least one of the pair shall be present -- }
1662
1663      Also implement the PEM functions to read and write certificate
1664      pairs, and defined the PEM tag as "CERTIFICATE PAIR".
1665
1666      This needed to be defined, mostly for the sake of the LDAP
1667      attribute crossCertificatePair, but may prove useful elsewhere as
1668      well.
1669      [Richard Levitte]
1670
1671   *) Make it possible to inhibit symlinking of shared libraries in
1672      Makefile.shared, for Cygwin's sake.
1673      [Richard Levitte]
1674
1675   *) Extend the BIGNUM API by creating a function 
1676           void BN_set_negative(BIGNUM *a, int neg);
1677      and a macro that behave like
1678           int  BN_is_negative(const BIGNUM *a);
1679
1680      to avoid the need to access 'a->neg' directly in applications.
1681      [Nils Larsch]
1682
1683   *) Implement fast modular reduction for pseudo-Mersenne primes
1684      used in NIST curves (crypto/bn/bn_nist.c, crypto/ec/ecp_nist.c).
1685      EC_GROUP_new_curve_GFp() will now automatically use this
1686      if applicable.
1687      [Nils Larsch <nla@trustcenter.de>]
1688
1689   *) Add new lock type (CRYPTO_LOCK_BN).
1690      [Bodo Moeller]
1691
1692   *) Change the ENGINE framework to automatically load engines
1693      dynamically from specific directories unless they could be
1694      found to already be built in or loaded.  Move all the
1695      current engines except for the cryptodev one to a new
1696      directory engines/.
1697      The engines in engines/ are built as shared libraries if
1698      the "shared" options was given to ./Configure or ./config.
1699      Otherwise, they are inserted in libcrypto.a.
1700      /usr/local/ssl/engines is the default directory for dynamic
1701      engines, but that can be overriden at configure time through
1702      the usual use of --prefix and/or --openssldir, and at run
1703      time with the environment variable OPENSSL_ENGINES.
1704      [Geoff Thorpe and Richard Levitte]
1705
1706   *) Add Makefile.shared, a helper makefile to build shared
1707      libraries.  Addapt Makefile.org.
1708      [Richard Levitte]
1709
1710   *) Add version info to Win32 DLLs.
1711      [Peter 'Luna' Runestig" <peter@runestig.com>]
1712
1713   *) Add new 'medium level' PKCS#12 API. Certificates and keys
1714      can be added using this API to created arbitrary PKCS#12
1715      files while avoiding the low level API.
1716
1717      New options to PKCS12_create(), key or cert can be NULL and
1718      will then be omitted from the output file. The encryption
1719      algorithm NIDs can be set to -1 for no encryption, the mac
1720      iteration count can be set to 0 to omit the mac.
1721
1722      Enhance pkcs12 utility by making the -nokeys and -nocerts
1723      options work when creating a PKCS#12 file. New option -nomac
1724      to omit the mac, NONE can be set for an encryption algorithm.
1725      New code is modified to use the enhanced PKCS12_create()
1726      instead of the low level API.
1727      [Steve Henson]
1728
1729   *) Extend ASN1 encoder to support indefinite length constructed
1730      encoding. This can output sequences tags and octet strings in
1731      this form. Modify pk7_asn1.c to support indefinite length
1732      encoding. This is experimental and needs additional code to
1733      be useful, such as an ASN1 bio and some enhanced streaming
1734      PKCS#7 code.
1735
1736      Extend template encode functionality so that tagging is passed
1737      down to the template encoder.
1738      [Steve Henson]
1739
1740   *) Let 'openssl req' fail if an argument to '-newkey' is not
1741      recognized instead of using RSA as a default.
1742      [Bodo Moeller]
1743
1744   *) Add support for ECC-based ciphersuites from draft-ietf-tls-ecc-01.txt.
1745      As these are not official, they are not included in "ALL";
1746      the "ECCdraft" ciphersuite group alias can be used to select them.
1747      [Vipul Gupta and Sumit Gupta (Sun Microsystems Laboratories)]
1748
1749   *) Add ECDH engine support.
1750      [Nils Gura and Douglas Stebila (Sun Microsystems Laboratories)]
1751
1752   *) Add ECDH in new directory crypto/ecdh/.
1753      [Douglas Stebila (Sun Microsystems Laboratories)]
1754
1755   *) Let BN_rand_range() abort with an error after 100 iterations
1756      without success (which indicates a broken PRNG).
1757      [Bodo Moeller]
1758
1759   *) Change BN_mod_sqrt() so that it verifies that the input value
1760      is really the square of the return value.  (Previously,
1761      BN_mod_sqrt would show GIGO behaviour.)
1762      [Bodo Moeller]
1763
1764   *) Add named elliptic curves over binary fields from X9.62, SECG,
1765      and WAP/WTLS; add OIDs that were still missing.
1766
1767      [Sheueling Chang Shantz and Douglas Stebila
1768      (Sun Microsystems Laboratories)]
1769
1770   *) Extend the EC library for elliptic curves over binary fields
1771      (new files ec2_smpl.c, ec2_smpt.c, ec2_mult.c in crypto/ec/).
1772      New EC_METHOD:
1773
1774           EC_GF2m_simple_method
1775
1776      New API functions:
1777
1778           EC_GROUP_new_curve_GF2m
1779           EC_GROUP_set_curve_GF2m
1780           EC_GROUP_get_curve_GF2m
1781           EC_POINT_set_affine_coordinates_GF2m
1782           EC_POINT_get_affine_coordinates_GF2m
1783           EC_POINT_set_compressed_coordinates_GF2m
1784
1785      Point compression for binary fields is disabled by default for
1786      patent reasons (compile with OPENSSL_EC_BIN_PT_COMP defined to
1787      enable it).
1788
1789      As binary polynomials are represented as BIGNUMs, various members
1790      of the EC_GROUP and EC_POINT data structures can be shared
1791      between the implementations for prime fields and binary fields;
1792      the above ..._GF2m functions (except for EX_GROUP_new_curve_GF2m)
1793      are essentially identical to their ..._GFp counterparts.
1794      (For simplicity, the '..._GFp' prefix has been dropped from
1795      various internal method names.)
1796
1797      An internal 'field_div' method (similar to 'field_mul' and
1798      'field_sqr') has been added; this is used only for binary fields.
1799
1800      [Sheueling Chang Shantz and Douglas Stebila
1801      (Sun Microsystems Laboratories)]
1802
1803   *) Optionally dispatch EC_POINT_mul(), EC_POINT_precompute_mult()
1804      through methods ('mul', 'precompute_mult').
1805
1806      The generic implementations (now internally called 'ec_wNAF_mul'
1807      and 'ec_wNAF_precomputed_mult') remain the default if these
1808      methods are undefined.
1809
1810      [Sheueling Chang Shantz and Douglas Stebila
1811      (Sun Microsystems Laboratories)]
1812
1813   *) New function EC_GROUP_get_degree, which is defined through
1814      EC_METHOD.  For curves over prime fields, this returns the bit
1815      length of the modulus.
1816
1817      [Sheueling Chang Shantz and Douglas Stebila
1818      (Sun Microsystems Laboratories)]
1819
1820   *) New functions EC_GROUP_dup, EC_POINT_dup.
1821      (These simply call ..._new  and ..._copy).
1822
1823      [Sheueling Chang Shantz and Douglas Stebila
1824      (Sun Microsystems Laboratories)]
1825
1826   *) Add binary polynomial arithmetic software in crypto/bn/bn_gf2m.c.
1827      Polynomials are represented as BIGNUMs (where the sign bit is not
1828      used) in the following functions [macros]:  
1829
1830           BN_GF2m_add
1831           BN_GF2m_sub             [= BN_GF2m_add]
1832           BN_GF2m_mod             [wrapper for BN_GF2m_mod_arr]
1833           BN_GF2m_mod_mul         [wrapper for BN_GF2m_mod_mul_arr]
1834           BN_GF2m_mod_sqr         [wrapper for BN_GF2m_mod_sqr_arr]
1835           BN_GF2m_mod_inv
1836           BN_GF2m_mod_exp         [wrapper for BN_GF2m_mod_exp_arr]
1837           BN_GF2m_mod_sqrt        [wrapper for BN_GF2m_mod_sqrt_arr]
1838           BN_GF2m_mod_solve_quad  [wrapper for BN_GF2m_mod_solve_quad_arr]
1839           BN_GF2m_cmp             [= BN_ucmp]
1840
1841      (Note that only the 'mod' functions are actually for fields GF(2^m).
1842      BN_GF2m_add() is misnomer, but this is for the sake of consistency.)
1843
1844      For some functions, an the irreducible polynomial defining a
1845      field can be given as an 'unsigned int[]' with strictly
1846      decreasing elements giving the indices of those bits that are set;
1847      i.e., p[] represents the polynomial
1848           f(t) = t^p[0] + t^p[1] + ... + t^p[k]
1849      where
1850           p[0] > p[1] > ... > p[k] = 0.
1851      This applies to the following functions:
1852
1853           BN_GF2m_mod_arr
1854           BN_GF2m_mod_mul_arr
1855           BN_GF2m_mod_sqr_arr
1856           BN_GF2m_mod_inv_arr        [wrapper for BN_GF2m_mod_inv]
1857           BN_GF2m_mod_div_arr        [wrapper for BN_GF2m_mod_div]
1858           BN_GF2m_mod_exp_arr
1859           BN_GF2m_mod_sqrt_arr
1860           BN_GF2m_mod_solve_quad_arr
1861           BN_GF2m_poly2arr
1862           BN_GF2m_arr2poly
1863
1864      Conversion can be performed by the following functions:
1865
1866           BN_GF2m_poly2arr
1867           BN_GF2m_arr2poly
1868
1869      bntest.c has additional tests for binary polynomial arithmetic.
1870
1871      Two implementations for BN_GF2m_mod_div() are available.
1872      The default algorithm simply uses BN_GF2m_mod_inv() and
1873      BN_GF2m_mod_mul().  The alternative algorithm is compiled in only
1874      if OPENSSL_SUN_GF2M_DIV is defined (patent pending; read the
1875      copyright notice in crypto/bn/bn_gf2m.c before enabling it).
1876
1877      [Sheueling Chang Shantz and Douglas Stebila
1878      (Sun Microsystems Laboratories)]
1879
1880   *) Add new error code 'ERR_R_DISABLED' that can be used when some
1881      functionality is disabled at compile-time.
1882      [Douglas Stebila <douglas.stebila@sun.com>]
1883
1884   *) Change default behaviour of 'openssl asn1parse' so that more
1885      information is visible when viewing, e.g., a certificate:
1886
1887      Modify asn1_parse2 (crypto/asn1/asn1_par.c) so that in non-'dump'
1888      mode the content of non-printable OCTET STRINGs is output in a
1889      style similar to INTEGERs, but with '[HEX DUMP]' prepended to
1890      avoid the appearance of a printable string.
1891      [Nils Larsch <nla@trustcenter.de>]
1892
1893   *) Add 'asn1_flag' and 'asn1_form' member to EC_GROUP with access
1894      functions
1895           EC_GROUP_set_asn1_flag()
1896           EC_GROUP_get_asn1_flag()
1897           EC_GROUP_set_point_conversion_form()
1898           EC_GROUP_get_point_conversion_form()
1899      These control ASN1 encoding details:
1900      - Curves (i.e., groups) are encoded explicitly unless asn1_flag
1901        has been set to OPENSSL_EC_NAMED_CURVE.
1902      - Points are encoded in uncompressed form by default; options for
1903        asn1_for are as for point2oct, namely
1904           POINT_CONVERSION_COMPRESSED
1905           POINT_CONVERSION_UNCOMPRESSED
1906           POINT_CONVERSION_HYBRID
1907
1908      Also add 'seed' and 'seed_len' members to EC_GROUP with access
1909      functions
1910           EC_GROUP_set_seed()
1911           EC_GROUP_get0_seed()
1912           EC_GROUP_get_seed_len()
1913      This is used only for ASN1 purposes (so far).
1914      [Nils Larsch <nla@trustcenter.de>]
1915
1916   *) Add 'field_type' member to EC_METHOD, which holds the NID
1917      of the appropriate field type OID.  The new function
1918      EC_METHOD_get_field_type() returns this value.
1919      [Nils Larsch <nla@trustcenter.de>]
1920
1921   *) Add functions 
1922           EC_POINT_point2bn()
1923           EC_POINT_bn2point()
1924           EC_POINT_point2hex()
1925           EC_POINT_hex2point()
1926      providing useful interfaces to EC_POINT_point2oct() and
1927      EC_POINT_oct2point().
1928      [Nils Larsch <nla@trustcenter.de>]
1929
1930   *) Change internals of the EC library so that the functions
1931           EC_GROUP_set_generator()
1932           EC_GROUP_get_generator()
1933           EC_GROUP_get_order()
1934           EC_GROUP_get_cofactor()
1935      are implemented directly in crypto/ec/ec_lib.c and not dispatched
1936      to methods, which would lead to unnecessary code duplication when
1937      adding different types of curves.
1938      [Nils Larsch <nla@trustcenter.de> with input by Bodo Moeller]
1939
1940   *) Implement compute_wNAF (crypto/ec/ec_mult.c) without BIGNUM
1941      arithmetic, and such that modified wNAFs are generated
1942      (which avoid length expansion in many cases).
1943      [Bodo Moeller]
1944
1945   *) Add a function EC_GROUP_check_discriminant() (defined via
1946      EC_METHOD) that verifies that the curve discriminant is non-zero.
1947
1948      Add a function EC_GROUP_check() that makes some sanity tests
1949      on a EC_GROUP, its generator and order.  This includes
1950      EC_GROUP_check_discriminant().
1951      [Nils Larsch <nla@trustcenter.de>]
1952
1953   *) Add ECDSA in new directory crypto/ecdsa/.
1954
1955      Add applications 'openssl ecparam' and 'openssl ecdsa'
1956      (these are based on 'openssl dsaparam' and 'openssl dsa').
1957
1958      ECDSA support is also included in various other files across the
1959      library.  Most notably,
1960      - 'openssl req' now has a '-newkey ecdsa:file' option;
1961      - EVP_PKCS82PKEY (crypto/evp/evp_pkey.c) now can handle ECDSA;
1962      - X509_PUBKEY_get (crypto/asn1/x_pubkey.c) and
1963        d2i_PublicKey (crypto/asn1/d2i_pu.c) have been modified to make
1964        them suitable for ECDSA where domain parameters must be
1965        extracted before the specific public key;
1966      - ECDSA engine support has been added.
1967      [Nils Larsch <nla@trustcenter.de>]
1968
1969   *) Include some named elliptic curves, and add OIDs from X9.62,
1970      SECG, and WAP/WTLS.  Each curve can be obtained from the new
1971      function
1972           EC_GROUP_new_by_curve_name(),
1973      and the list of available named curves can be obtained with
1974           EC_get_builtin_curves().
1975      Also add a 'curve_name' member to EC_GROUP objects, which can be
1976      accessed via
1977          EC_GROUP_set_curve_name()
1978          EC_GROUP_get_curve_name()
1979      [Nils Larsch <larsch@trustcenter.de, Bodo Moeller]
1980  
1981   *) Remove a few calls to bn_wexpand() in BN_sqr() (the one in there
1982      was actually never needed) and in BN_mul().  The removal in BN_mul()
1983      required a small change in bn_mul_part_recursive() and the addition
1984      of the functions bn_cmp_part_words(), bn_sub_part_words() and
1985      bn_add_part_words(), which do the same thing as bn_cmp_words(),
1986      bn_sub_words() and bn_add_words() except they take arrays with
1987      differing sizes.
1988      [Richard Levitte]
1989
1990  Changes between 0.9.7m and 0.9.7n  [xx XXX xxxx]
1991
1992   *) In the SSL/TLS server implementation, be strict about session ID
1993      context matching (which matters if an application uses a single
1994      external cache for different purposes).  Previously,
1995      out-of-context reuse was forbidden only if SSL_VERIFY_PEER was
1996      set.  This did ensure strict client verification, but meant that,
1997      with applications using a single external cache for quite
1998      different requirements, clients could circumvent ciphersuite
1999      restrictions for a given session ID context by starting a session
2000      in a different context.
2001      [Bodo Moeller]
2002
2003  Changes between 0.9.7l and 0.9.7m  [23 Feb 2007]
2004
2005   *) Cleanse PEM buffers before freeing them since they may contain 
2006      sensitive data.
2007      [Benjamin Bennett <ben@psc.edu>]
2008
2009   *) Include "!eNULL" in SSL_DEFAULT_CIPHER_LIST to make sure that
2010      a ciphersuite string such as "DEFAULT:RSA" cannot enable
2011      authentication-only ciphersuites.
2012      [Bodo Moeller]
2013
2014   *) Since AES128 and AES256 share a single mask bit in the logic of
2015      ssl/ssl_ciph.c, the code for masking out disabled ciphers needs a
2016      kludge to work properly if AES128 is available and AES256 isn't.
2017      [Victor Duchovni]
2018
2019   *) Expand security boundary to match 1.1.1 module.
2020      [Steve Henson]
2021
2022   *) Remove redundant features: hash file source, editing of test vectors
2023      modify fipsld to use external fips_premain.c signature.
2024      [Steve Henson]
2025
2026   *) New perl script mkfipsscr.pl to create shell scripts or batch files to
2027      run algorithm test programs.
2028      [Steve Henson]
2029
2030   *) Make algorithm test programs more tolerant of whitespace.
2031      [Steve Henson]
2032
2033   *) Have SSL/TLS server implementation tolerate "mismatched" record
2034      protocol version while receiving ClientHello even if the
2035      ClientHello is fragmented.  (The server can't insist on the
2036      particular protocol version it has chosen before the ServerHello
2037      message has informed the client about his choice.)
2038      [Bodo Moeller]
2039
2040   *) Load error codes if they are not already present instead of using a
2041      static variable. This allows them to be cleanly unloaded and reloaded.
2042      [Steve Henson]
2043
2044  Changes between 0.9.7k and 0.9.7l  [28 Sep 2006]
2045
2046   *) Introduce limits to prevent malicious keys being able to
2047      cause a denial of service.  (CVE-2006-2940)
2048      [Steve Henson, Bodo Moeller]
2049
2050   *) Fix ASN.1 parsing of certain invalid structures that can result
2051      in a denial of service.  (CVE-2006-2937)  [Steve Henson]
2052
2053   *) Fix buffer overflow in SSL_get_shared_ciphers() function. 
2054      (CVE-2006-3738) [Tavis Ormandy and Will Drewry, Google Security Team]
2055
2056   *) Fix SSL client code which could crash if connecting to a
2057      malicious SSLv2 server.  (CVE-2006-4343)
2058      [Tavis Ormandy and Will Drewry, Google Security Team]
2059
2060   *) Change ciphersuite string processing so that an explicit
2061      ciphersuite selects this one ciphersuite (so that "AES256-SHA"
2062      will no longer include "AES128-SHA"), and any other similar
2063      ciphersuite (same bitmap) from *other* protocol versions (so that
2064      "RC4-MD5" will still include both the SSL 2.0 ciphersuite and the
2065      SSL 3.0/TLS 1.0 ciphersuite).  This is a backport combining
2066      changes from 0.9.8b and 0.9.8d.
2067      [Bodo Moeller]
2068
2069  Changes between 0.9.7j and 0.9.7k  [05 Sep 2006]
2070
2071   *) Avoid PKCS #1 v1.5 signature attack discovered by Daniel Bleichenbacher
2072      (CVE-2006-4339)  [Ben Laurie and Google Security Team]
2073
2074   *) Change the Unix randomness entropy gathering to use poll() when
2075      possible instead of select(), since the latter has some
2076      undesirable limitations.
2077      [Darryl Miles via Richard Levitte and Bodo Moeller]
2078
2079   *) Disable rogue ciphersuites:
2080
2081       - SSLv2 0x08 0x00 0x80 ("RC4-64-MD5")
2082       - SSLv3/TLSv1 0x00 0x61 ("EXP1024-RC2-CBC-MD5")
2083       - SSLv3/TLSv1 0x00 0x60 ("EXP1024-RC4-MD5")
2084
2085      The latter two were purportedly from
2086      draft-ietf-tls-56-bit-ciphersuites-0[01].txt, but do not really
2087      appear there.
2088
2089      Also deactive the remaining ciphersuites from
2090      draft-ietf-tls-56-bit-ciphersuites-01.txt.  These are just as
2091      unofficial, and the ID has long expired.
2092      [Bodo Moeller]
2093
2094   *) Fix RSA blinding Heisenbug (problems sometimes occured on
2095      dual-core machines) and other potential thread-safety issues.
2096      [Bodo Moeller]
2097
2098  Changes between 0.9.7i and 0.9.7j  [04 May 2006]
2099
2100   *) Adapt fipsld and the build system to link against the validated FIPS
2101      module in FIPS mode.
2102      [Steve Henson]
2103
2104   *) Fixes for VC++ 2005 build under Windows.
2105      [Steve Henson]
2106
2107   *) Add new Windows build target VC-32-GMAKE for VC++. This uses GNU make 
2108      from a Windows bash shell such as MSYS. It is autodetected from the
2109      "config" script when run from a VC++ environment. Modify standard VC++
2110      build to use fipscanister.o from the GNU make build. 
2111      [Steve Henson]
2112
2113  Changes between 0.9.7h and 0.9.7i  [14 Oct 2005]
2114
2115   *) Wrapped the definition of EVP_MAX_MD_SIZE in a #ifdef OPENSSL_FIPS.
2116      The value now differs depending on if you build for FIPS or not.
2117      BEWARE!  A program linked with a shared FIPSed libcrypto can't be
2118      safely run with a non-FIPSed libcrypto, as it may crash because of
2119      the difference induced by this change.
2120      [Andy Polyakov]
2121
2122  Changes between 0.9.7g and 0.9.7h  [11 Oct 2005]
2123
2124   *) Remove the functionality of SSL_OP_MSIE_SSLV2_RSA_PADDING
2125      (part of SSL_OP_ALL).  This option used to disable the
2126      countermeasure against man-in-the-middle protocol-version
2127      rollback in the SSL 2.0 server implementation, which is a bad
2128      idea.  (CVE-2005-2969)
2129
2130      [Bodo Moeller; problem pointed out by Yutaka Oiwa (Research Center
2131      for Information Security, National Institute of Advanced Industrial
2132      Science and Technology [AIST], Japan)]
2133
2134   *) Minimal support for X9.31 signatures and PSS padding modes. This is
2135      mainly for FIPS compliance and not fully integrated at this stage.
2136      [Steve Henson]
2137
2138   *) For DSA signing, unless DSA_FLAG_NO_EXP_CONSTTIME is set, perform
2139      the exponentiation using a fixed-length exponent.  (Otherwise,
2140      the information leaked through timing could expose the secret key
2141      after many signatures; cf. Bleichenbacher's attack on DSA with
2142      biased k.)
2143      [Bodo Moeller]
2144
2145   *) Make a new fixed-window mod_exp implementation the default for
2146      RSA, DSA, and DH private-key operations so that the sequence of
2147      squares and multiplies and the memory access pattern are
2148      independent of the particular secret key.  This will mitigate
2149      cache-timing and potential related attacks.
2150
2151      BN_mod_exp_mont_consttime() is the new exponentiation implementation,
2152      and this is automatically used by BN_mod_exp_mont() if the new flag
2153      BN_FLG_EXP_CONSTTIME is set for the exponent.  RSA, DSA, and DH 
2154      will use this BN flag for private exponents unless the flag
2155      RSA_FLAG_NO_EXP_CONSTTIME, DSA_FLAG_NO_EXP_CONSTTIME, or
2156      DH_FLAG_NO_EXP_CONSTTIME, respectively, is set.
2157
2158      [Matthew D Wood (Intel Corp), with some changes by Bodo Moeller]
2159
2160   *) Change the client implementation for SSLv23_method() and
2161      SSLv23_client_method() so that is uses the SSL 3.0/TLS 1.0
2162      Client Hello message format if the SSL_OP_NO_SSLv2 option is set.
2163      (Previously, the SSL 2.0 backwards compatible Client Hello
2164      message format would be used even with SSL_OP_NO_SSLv2.)
2165      [Bodo Moeller]
2166
2167   *) Add support for smime-type MIME parameter in S/MIME messages which some
2168      clients need.
2169      [Steve Henson]
2170
2171   *) New function BN_MONT_CTX_set_locked() to set montgomery parameters in
2172      a threadsafe manner. Modify rsa code to use new function and add calls
2173      to dsa and dh code (which had race conditions before).
2174      [Steve Henson]
2175
2176   *) Include the fixed error library code in the C error file definitions
2177      instead of fixing them up at runtime. This keeps the error code
2178      structures constant.
2179      [Steve Henson]
2180
2181  Changes between 0.9.7f and 0.9.7g  [11 Apr 2005]
2182
2183   [NB: OpenSSL 0.9.7h and later 0.9.7 patch levels were released after
2184   OpenSSL 0.9.8.]
2185
2186   *) Fixes for newer kerberos headers. NB: the casts are needed because
2187      the 'length' field is signed on one version and unsigned on another
2188      with no (?) obvious way to tell the difference, without these VC++
2189      complains. Also the "definition" of FAR (blank) is no longer included
2190      nor is the error ENOMEM. KRB5_PRIVATE has to be set to 1 to pick up
2191      some needed definitions.
2192      [Steve Henson]
2193
2194   *) Undo Cygwin change.
2195      [Ulf Möller]
2196
2197   *) Added support for proxy certificates according to RFC 3820.
2198      Because they may be a security thread to unaware applications,
2199      they must be explicitely allowed in run-time.  See
2200      docs/HOWTO/proxy_certificates.txt for further information.
2201      [Richard Levitte]
2202
2203  Changes between 0.9.7e and 0.9.7f  [22 Mar 2005]
2204
2205   *) Use (SSL_RANDOM_VALUE - 4) bytes of pseudo random data when generating
2206      server and client random values. Previously
2207      (SSL_RANDOM_VALUE - sizeof(time_t)) would be used which would result in
2208      less random data when sizeof(time_t) > 4 (some 64 bit platforms).
2209
2210      This change has negligible security impact because:
2211
2212      1. Server and client random values still have 24 bytes of pseudo random
2213         data.
2214
2215      2. Server and client random values are sent in the clear in the initial
2216         handshake.
2217
2218      3. The master secret is derived using the premaster secret (48 bytes in
2219         size for static RSA ciphersuites) as well as client server and random
2220         values.
2221
2222      The OpenSSL team would like to thank the UK NISCC for bringing this issue
2223      to our attention. 
2224
2225      [Stephen Henson, reported by UK NISCC]
2226
2227   *) Use Windows randomness collection on Cygwin.
2228      [Ulf Möller]
2229
2230   *) Fix hang in EGD/PRNGD query when communication socket is closed
2231      prematurely by EGD/PRNGD.
2232      [Darren Tucker <dtucker@zip.com.au> via Lutz Jänicke, resolves #1014]
2233
2234   *) Prompt for pass phrases when appropriate for PKCS12 input format.
2235      [Steve Henson]
2236
2237   *) Back-port of selected performance improvements from development
2238      branch, as well as improved support for PowerPC platforms.
2239      [Andy Polyakov]
2240
2241   *) Add lots of checks for memory allocation failure, error codes to indicate
2242      failure and freeing up memory if a failure occurs.
2243      [Nauticus Networks SSL Team <openssl@nauticusnet.com>, Steve Henson]
2244
2245   *) Add new -passin argument to dgst.
2246      [Steve Henson]
2247
2248   *) Perform some character comparisons of different types in X509_NAME_cmp:
2249      this is needed for some certificates that reencode DNs into UTF8Strings
2250      (in violation of RFC3280) and can't or wont issue name rollover
2251      certificates.
2252      [Steve Henson]
2253
2254   *) Make an explicit check during certificate validation to see that
2255      the CA setting in each certificate on the chain is correct.  As a
2256      side effect always do the following basic checks on extensions,
2257      not just when there's an associated purpose to the check:
2258
2259       - if there is an unhandled critical extension (unless the user
2260         has chosen to ignore this fault)
2261       - if the path length has been exceeded (if one is set at all)
2262       - that certain extensions fit the associated purpose (if one has
2263         been given)
2264      [Richard Levitte]
2265
2266  Changes between 0.9.7d and 0.9.7e  [25 Oct 2004]
2267
2268   *) Avoid a race condition when CRLs are checked in a multi threaded 
2269      environment. This would happen due to the reordering of the revoked
2270      entries during signature checking and serial number lookup. Now the
2271      encoding is cached and the serial number sort performed under a lock.
2272      Add new STACK function sk_is_sorted().
2273      [Steve Henson]
2274
2275   *) Add Delta CRL to the extension code.
2276      [Steve Henson]
2277
2278   *) Various fixes to s3_pkt.c so alerts are sent properly.
2279      [David Holmes <d.holmes@f5.com>]
2280
2281   *) Reduce the chances of duplicate issuer name and serial numbers (in
2282      violation of RFC3280) using the OpenSSL certificate creation utilities.
2283      This is done by creating a random 64 bit value for the initial serial
2284      number when a serial number file is created or when a self signed
2285      certificate is created using 'openssl req -x509'. The initial serial
2286      number file is created using 'openssl x509 -next_serial' in CA.pl
2287      rather than being initialized to 1.
2288      [Steve Henson]
2289
2290  Changes between 0.9.7c and 0.9.7d  [17 Mar 2004]
2291
2292   *) Fix null-pointer assignment in do_change_cipher_spec() revealed           
2293      by using the Codenomicon TLS Test Tool (CVE-2004-0079)                    
2294      [Joe Orton, Steve Henson]   
2295
2296   *) Fix flaw in SSL/TLS handshaking when using Kerberos ciphersuites
2297      (CVE-2004-0112)
2298      [Joe Orton, Steve Henson]   
2299
2300   *) Make it possible to have multiple active certificates with the same
2301      subject in the CA index file.  This is done only if the keyword
2302      'unique_subject' is set to 'no' in the main CA section (default
2303      if 'CA_default') of the configuration file.  The value is saved
2304      with the database itself in a separate index attribute file,
2305      named like the index file with '.attr' appended to the name.
2306      [Richard Levitte]
2307
2308   *) X509 verify fixes. Disable broken certificate workarounds when 
2309      X509_V_FLAGS_X509_STRICT is set. Check CRL issuer has cRLSign set if
2310      keyUsage extension present. Don't accept CRLs with unhandled critical
2311      extensions: since verify currently doesn't process CRL extensions this
2312      rejects a CRL with *any* critical extensions. Add new verify error codes
2313      for these cases.
2314      [Steve Henson]
2315
2316   *) When creating an OCSP nonce use an OCTET STRING inside the extnValue.
2317      A clarification of RFC2560 will require the use of OCTET STRINGs and 
2318      some implementations cannot handle the current raw format. Since OpenSSL
2319      copies and compares OCSP nonces as opaque blobs without any attempt at
2320      parsing them this should not create any compatibility issues.
2321      [Steve Henson]
2322
2323   *) New md flag EVP_MD_CTX_FLAG_REUSE this allows md_data to be reused when
2324      calling EVP_MD_CTX_copy_ex() to avoid calling OPENSSL_malloc(). Without
2325      this HMAC (and other) operations are several times slower than OpenSSL
2326      < 0.9.7.
2327      [Steve Henson]
2328
2329   *) Print out GeneralizedTime and UTCTime in ASN1_STRING_print_ex().
2330      [Peter Sylvester <Peter.Sylvester@EdelWeb.fr>]
2331
2332   *) Use the correct content when signing type "other".
2333      [Steve Henson]
2334
2335  Changes between 0.9.7b and 0.9.7c  [30 Sep 2003]
2336
2337   *) Fix various bugs revealed by running the NISCC test suite:
2338
2339      Stop out of bounds reads in the ASN1 code when presented with
2340      invalid tags (CVE-2003-0543 and CVE-2003-0544).
2341      
2342      Free up ASN1_TYPE correctly if ANY type is invalid (CVE-2003-0545).
2343
2344      If verify callback ignores invalid public key errors don't try to check
2345      certificate signature with the NULL public key.
2346
2347      [Steve Henson]
2348
2349   *) New -ignore_err option in ocsp application to stop the server
2350      exiting on the first error in a request.
2351      [Steve Henson]
2352
2353   *) In ssl3_accept() (ssl/s3_srvr.c) only accept a client certificate
2354      if the server requested one: as stated in TLS 1.0 and SSL 3.0
2355      specifications.
2356      [Steve Henson]
2357
2358   *) In ssl3_get_client_hello() (ssl/s3_srvr.c), tolerate additional
2359      extra data after the compression methods not only for TLS 1.0
2360      but also for SSL 3.0 (as required by the specification).
2361      [Bodo Moeller; problem pointed out by Matthias Loepfe]
2362
2363   *) Change X509_certificate_type() to mark the key as exported/exportable
2364      when it's 512 *bits* long, not 512 bytes.
2365      [Richard Levitte]
2366
2367   *) Change AES_cbc_encrypt() so it outputs exact multiple of
2368      blocks during encryption.
2369      [Richard Levitte]
2370
2371   *) Various fixes to base64 BIO and non blocking I/O. On write 
2372      flushes were not handled properly if the BIO retried. On read
2373      data was not being buffered properly and had various logic bugs.
2374      This also affects blocking I/O when the data being decoded is a
2375      certain size.
2376      [Steve Henson]
2377
2378   *) Various S/MIME bugfixes and compatibility changes:
2379      output correct application/pkcs7 MIME type if
2380      PKCS7_NOOLDMIMETYPE is set. Tolerate some broken signatures.
2381      Output CR+LF for EOL if PKCS7_CRLFEOL is set (this makes opening
2382      of files as .eml work). Correctly handle very long lines in MIME
2383      parser.
2384      [Steve Henson]
2385
2386  Changes between 0.9.7a and 0.9.7b  [10 Apr 2003]
2387
2388   *) Countermeasure against the Klima-Pokorny-Rosa extension of
2389      Bleichbacher's attack on PKCS #1 v1.5 padding: treat
2390      a protocol version number mismatch like a decryption error
2391      in ssl3_get_client_key_exchange (ssl/s3_srvr.c).
2392      [Bodo Moeller]
2393
2394   *) Turn on RSA blinding by default in the default implementation
2395      to avoid a timing attack. Applications that don't want it can call
2396      RSA_blinding_off() or use the new flag RSA_FLAG_NO_BLINDING.
2397      They would be ill-advised to do so in most cases.
2398      [Ben Laurie, Steve Henson, Geoff Thorpe, Bodo Moeller]
2399
2400   *) Change RSA blinding code so that it works when the PRNG is not
2401      seeded (in this case, the secret RSA exponent is abused as
2402      an unpredictable seed -- if it is not unpredictable, there
2403      is no point in blinding anyway).  Make RSA blinding thread-safe
2404      by remembering the creator's thread ID in rsa->blinding and
2405      having all other threads use local one-time blinding factors
2406      (this requires more computation than sharing rsa->blinding, but
2407      avoids excessive locking; and if an RSA object is not shared
2408      between threads, blinding will still be very fast).
2409      [Bodo Moeller]
2410
2411   *) Fixed a typo bug that would cause ENGINE_set_default() to set an
2412      ENGINE as defaults for all supported algorithms irrespective of
2413      the 'flags' parameter. 'flags' is now honoured, so applications
2414      should make sure they are passing it correctly.
2415      [Geoff Thorpe]
2416
2417   *) Target "mingw" now allows native Windows code to be generated in
2418      the Cygwin environment as well as with the MinGW compiler.
2419      [Ulf Moeller] 
2420
2421  Changes between 0.9.7 and 0.9.7a  [19 Feb 2003]
2422
2423   *) In ssl3_get_record (ssl/s3_pkt.c), minimize information leaked
2424      via timing by performing a MAC computation even if incorrrect
2425      block cipher padding has been found.  This is a countermeasure
2426      against active attacks where the attacker has to distinguish
2427      between bad padding and a MAC verification error. (CVE-2003-0078)
2428
2429      [Bodo Moeller; problem pointed out by Brice Canvel (EPFL),
2430      Alain Hiltgen (UBS), Serge Vaudenay (EPFL), and
2431      Martin Vuagnoux (EPFL, Ilion)]
2432
2433   *) Make the no-err option work as intended.  The intention with no-err
2434      is not to have the whole error stack handling routines removed from
2435      libcrypto, it's only intended to remove all the function name and
2436      reason texts, thereby removing some of the footprint that may not
2437      be interesting if those errors aren't displayed anyway.
2438
2439      NOTE: it's still possible for any application or module to have it's
2440      own set of error texts inserted.  The routines are there, just not
2441      used by default when no-err is given.
2442      [Richard Levitte]
2443
2444   *) Add support for FreeBSD on IA64.
2445      [dirk.meyer@dinoex.sub.org via Richard Levitte, resolves #454]
2446
2447   *) Adjust DES_cbc_cksum() so it returns the same value as the MIT
2448      Kerberos function mit_des_cbc_cksum().  Before this change,
2449      the value returned by DES_cbc_cksum() was like the one from
2450      mit_des_cbc_cksum(), except the bytes were swapped.
2451      [Kevin Greaney <Kevin.Greaney@hp.com> and Richard Levitte]
2452
2453   *) Allow an application to disable the automatic SSL chain building.
2454      Before this a rather primitive chain build was always performed in
2455      ssl3_output_cert_chain(): an application had no way to send the 
2456      correct chain if the automatic operation produced an incorrect result.
2457
2458      Now the chain builder is disabled if either:
2459
2460      1. Extra certificates are added via SSL_CTX_add_extra_chain_cert().
2461
2462      2. The mode flag SSL_MODE_NO_AUTO_CHAIN is set.
2463
2464      The reasoning behind this is that an application would not want the
2465      auto chain building to take place if extra chain certificates are
2466      present and it might also want a means of sending no additional
2467      certificates (for example the chain has two certificates and the
2468      root is omitted).
2469      [Steve Henson]
2470
2471   *) Add the possibility to build without the ENGINE framework.
2472      [Steven Reddie <smr@essemer.com.au> via Richard Levitte]
2473
2474   *) Under Win32 gmtime() can return NULL: check return value in
2475      OPENSSL_gmtime(). Add error code for case where gmtime() fails.
2476      [Steve Henson]
2477
2478   *) DSA routines: under certain error conditions uninitialized BN objects
2479      could be freed. Solution: make sure initialization is performed early
2480      enough. (Reported and fix supplied by Ivan D Nestlerode <nestler@MIT.EDU>,
2481      Nils Larsch <nla@trustcenter.de> via PR#459)
2482      [Lutz Jaenicke]
2483
2484   *) Another fix for SSLv2 session ID handling: the session ID was incorrectly
2485      checked on reconnect on the client side, therefore session resumption
2486      could still fail with a "ssl session id is different" error. This
2487      behaviour is masked when SSL_OP_ALL is used due to
2488      SSL_OP_MICROSOFT_SESS_ID_BUG being set.
2489      Behaviour observed by Crispin Flowerday <crispin@flowerday.cx> as
2490      followup to PR #377.
2491      [Lutz Jaenicke]
2492
2493   *) IA-32 assembler support enhancements: unified ELF targets, support
2494      for SCO/Caldera platforms, fix for Cygwin shared build.
2495      [Andy Polyakov]
2496
2497   *) Add support for FreeBSD on sparc64.  As a consequence, support for
2498      FreeBSD on non-x86 processors is separate from x86 processors on
2499      the config script, much like the NetBSD support.
2500      [Richard Levitte & Kris Kennaway <kris@obsecurity.org>]
2501
2502  Changes between 0.9.6h and 0.9.7  [31 Dec 2002]
2503
2504   [NB: OpenSSL 0.9.6i and later 0.9.6 patch levels were released after
2505   OpenSSL 0.9.7.]
2506
2507   *) Fix session ID handling in SSLv2 client code: the SERVER FINISHED
2508      code (06) was taken as the first octet of the session ID and the last
2509      octet was ignored consequently. As a result SSLv2 client side session
2510      caching could not have worked due to the session ID mismatch between
2511      client and server.
2512      Behaviour observed by Crispin Flowerday <crispin@flowerday.cx> as
2513      PR #377.
2514      [Lutz Jaenicke]
2515
2516   *) Change the declaration of needed Kerberos libraries to use EX_LIBS
2517      instead of the special (and badly supported) LIBKRB5.  LIBKRB5 is
2518      removed entirely.
2519      [Richard Levitte]
2520
2521   *) The hw_ncipher.c engine requires dynamic locks.  Unfortunately, it
2522      seems that in spite of existing for more than a year, many application
2523      author have done nothing to provide the necessary callbacks, which
2524      means that this particular engine will not work properly anywhere.
2525      This is a very unfortunate situation which forces us, in the name
2526      of usability, to give the hw_ncipher.c a static lock, which is part
2527      of libcrypto.
2528      NOTE: This is for the 0.9.7 series ONLY.  This hack will never
2529      appear in 0.9.8 or later.  We EXPECT application authors to have
2530      dealt properly with this when 0.9.8 is released (unless we actually
2531      make such changes in the libcrypto locking code that changes will
2532      have to be made anyway).
2533      [Richard Levitte]
2534
2535   *) In asn1_d2i_read_bio() repeatedly call BIO_read() until all content
2536      octets have been read, EOF or an error occurs. Without this change
2537      some truncated ASN1 structures will not produce an error.
2538      [Steve Henson]
2539
2540   *) Disable Heimdal support, since it hasn't been fully implemented.
2541      Still give the possibility to force the use of Heimdal, but with
2542      warnings and a request that patches get sent to openssl-dev.
2543      [Richard Levitte]
2544
2545   *) Add the VC-CE target, introduce the WINCE sysname, and add
2546      INSTALL.WCE and appropriate conditionals to make it build.
2547      [Steven Reddie <smr@essemer.com.au> via Richard Levitte]
2548
2549   *) Change the DLL names for Cygwin to cygcrypto-x.y.z.dll and
2550      cygssl-x.y.z.dll, where x, y and z are the major, minor and
2551      edit numbers of the version.
2552      [Corinna Vinschen <vinschen@redhat.com> and Richard Levitte]
2553
2554   *) Introduce safe string copy and catenation functions
2555      (BUF_strlcpy() and BUF_strlcat()).
2556      [Ben Laurie (CHATS) and Richard Levitte]
2557
2558   *) Avoid using fixed-size buffers for one-line DNs.
2559      [Ben Laurie (CHATS)]
2560
2561   *) Add BUF_MEM_grow_clean() to avoid information leakage when
2562      resizing buffers containing secrets, and use where appropriate.
2563      [Ben Laurie (CHATS)]
2564
2565   *) Avoid using fixed size buffers for configuration file location.
2566      [Ben Laurie (CHATS)]
2567
2568   *) Avoid filename truncation for various CA files.
2569      [Ben Laurie (CHATS)]
2570
2571   *) Use sizeof in preference to magic numbers.
2572      [Ben Laurie (CHATS)]
2573
2574   *) Avoid filename truncation in cert requests.
2575      [Ben Laurie (CHATS)]
2576
2577   *) Add assertions to check for (supposedly impossible) buffer
2578      overflows.
2579      [Ben Laurie (CHATS)]
2580
2581   *) Don't cache truncated DNS entries in the local cache (this could
2582      potentially lead to a spoofing attack).
2583      [Ben Laurie (CHATS)]
2584
2585   *) Fix various buffers to be large enough for hex/decimal
2586      representations in a platform independent manner.
2587      [Ben Laurie (CHATS)]
2588
2589   *) Add CRYPTO_realloc_clean() to avoid information leakage when
2590      resizing buffers containing secrets, and use where appropriate.
2591      [Ben Laurie (CHATS)]
2592
2593   *) Add BIO_indent() to avoid much slightly worrying code to do
2594      indents.
2595      [Ben Laurie (CHATS)]
2596
2597   *) Convert sprintf()/BIO_puts() to BIO_printf().
2598      [Ben Laurie (CHATS)]
2599
2600   *) buffer_gets() could terminate with the buffer only half
2601      full. Fixed.
2602      [Ben Laurie (CHATS)]
2603
2604   *) Add assertions to prevent user-supplied crypto functions from
2605      overflowing internal buffers by having large block sizes, etc.
2606      [Ben Laurie (CHATS)]
2607
2608   *) New OPENSSL_assert() macro (similar to assert(), but enabled
2609      unconditionally).
2610      [Ben Laurie (CHATS)]
2611
2612   *) Eliminate unused copy of key in RC4.
2613      [Ben Laurie (CHATS)]
2614
2615   *) Eliminate unused and incorrectly sized buffers for IV in pem.h.
2616      [Ben Laurie (CHATS)]
2617
2618   *) Fix off-by-one error in EGD path.
2619      [Ben Laurie (CHATS)]
2620
2621   *) If RANDFILE path is too long, ignore instead of truncating.
2622      [Ben Laurie (CHATS)]
2623
2624   *) Eliminate unused and incorrectly sized X.509 structure
2625      CBCParameter.
2626      [Ben Laurie (CHATS)]
2627
2628   *) Eliminate unused and dangerous function knumber().
2629      [Ben Laurie (CHATS)]
2630
2631   *) Eliminate unused and dangerous structure, KSSL_ERR.
2632      [Ben Laurie (CHATS)]
2633
2634   *) Protect against overlong session ID context length in an encoded
2635      session object. Since these are local, this does not appear to be
2636      exploitable.
2637      [Ben Laurie (CHATS)]
2638
2639   *) Change from security patch (see 0.9.6e below) that did not affect
2640      the 0.9.6 release series:
2641
2642      Remote buffer overflow in SSL3 protocol - an attacker could
2643      supply an oversized master key in Kerberos-enabled versions.
2644      (CVE-2002-0657)
2645      [Ben Laurie (CHATS)]
2646
2647   *) Change the SSL kerb5 codes to match RFC 2712.
2648      [Richard Levitte]
2649
2650   *) Make -nameopt work fully for req and add -reqopt switch.
2651      [Michael Bell <michael.bell@rz.hu-berlin.de>, Steve Henson]
2652
2653   *) The "block size" for block ciphers in CFB and OFB mode should be 1.
2654      [Steve Henson, reported by Yngve Nysaeter Pettersen <yngve@opera.com>]
2655
2656   *) Make sure tests can be performed even if the corresponding algorithms
2657      have been removed entirely.  This was also the last step to make
2658      OpenSSL compilable with DJGPP under all reasonable conditions.
2659      [Richard Levitte, Doug Kaufman <dkaufman@rahul.net>]
2660
2661   *) Add cipher selection rules COMPLEMENTOFALL and COMPLEMENTOFDEFAULT
2662      to allow version independent disabling of normally unselected ciphers,
2663      which may be activated as a side-effect of selecting a single cipher.
2664
2665      (E.g., cipher list string "RSA" enables ciphersuites that are left
2666      out of "ALL" because they do not provide symmetric encryption.
2667      "RSA:!COMPLEMEMENTOFALL" avoids these unsafe ciphersuites.)
2668      [Lutz Jaenicke, Bodo Moeller]
2669
2670   *) Add appropriate support for separate platform-dependent build
2671      directories.  The recommended way to make a platform-dependent
2672      build directory is the following (tested on Linux), maybe with
2673      some local tweaks:
2674
2675         # Place yourself outside of the OpenSSL source tree.  In
2676         # this example, the environment variable OPENSSL_SOURCE
2677         # is assumed to contain the absolute OpenSSL source directory.
2678         mkdir -p objtree/"`uname -s`-`uname -r`-`uname -m`"
2679         cd objtree/"`uname -s`-`uname -r`-`uname -m`"
2680         (cd $OPENSSL_SOURCE; find . -type f) | while read F; do
2681                 mkdir -p `dirname $F`
2682                 ln -s $OPENSSL_SOURCE/$F $F
2683         done
2684
2685      To be absolutely sure not to disturb the source tree, a "make clean"
2686      is a good thing.  If it isn't successfull, don't worry about it,
2687      it probably means the source directory is very clean.
2688      [Richard Levitte]
2689
2690   *) Make sure any ENGINE control commands make local copies of string
2691      pointers passed to them whenever necessary. Otherwise it is possible
2692      the caller may have overwritten (or deallocated) the original string
2693      data when a later ENGINE operation tries to use the stored values.
2694      [Götz Babin-Ebell <babinebell@trustcenter.de>]
2695
2696   *) Improve diagnostics in file reading and command-line digests.
2697      [Ben Laurie aided and abetted by Solar Designer <solar@openwall.com>]
2698
2699   *) Add AES modes CFB and OFB to the object database.  Correct an
2700      error in AES-CFB decryption.
2701      [Richard Levitte]
2702
2703   *) Remove most calls to EVP_CIPHER_CTX_cleanup() in evp_enc.c, this 
2704      allows existing EVP_CIPHER_CTX structures to be reused after
2705      calling EVP_*Final(). This behaviour is used by encryption
2706      BIOs and some applications. This has the side effect that
2707      applications must explicitly clean up cipher contexts with
2708      EVP_CIPHER_CTX_cleanup() or they will leak memory.
2709      [Steve Henson]
2710
2711   *) Check the values of dna and dnb in bn_mul_recursive before calling
2712      bn_mul_comba (a non zero value means the a or b arrays do not contain
2713      n2 elements) and fallback to bn_mul_normal if either is not zero.
2714      [Steve Henson]
2715
2716   *) Fix escaping of non-ASCII characters when using the -subj option
2717      of the "openssl req" command line tool. (Robert Joop <joop@fokus.gmd.de>)
2718      [Lutz Jaenicke]
2719
2720   *) Make object definitions compliant to LDAP (RFC2256): SN is the short
2721      form for "surname", serialNumber has no short form.
2722      Use "mail" as the short name for "rfc822Mailbox" according to RFC2798;
2723      therefore remove "mail" short name for "internet 7".
2724      The OID for unique identifiers in X509 certificates is
2725      x500UniqueIdentifier, not uniqueIdentifier.
2726      Some more OID additions. (Michael Bell <michael.bell@rz.hu-berlin.de>)
2727      [Lutz Jaenicke]
2728
2729   *) Add an "init" command to the ENGINE config module and auto initialize
2730      ENGINEs. Without any "init" command the ENGINE will be initialized 
2731      after all ctrl commands have been executed on it. If init=1 the 
2732      ENGINE is initailized at that point (ctrls before that point are run
2733      on the uninitialized ENGINE and after on the initialized one). If
2734      init=0 then the ENGINE will not be iniatialized at all.
2735      [Steve Henson]
2736
2737   *) Fix the 'app_verify_callback' interface so that the user-defined
2738      argument is actually passed to the callback: In the
2739      SSL_CTX_set_cert_verify_callback() prototype, the callback
2740      declaration has been changed from
2741           int (*cb)()
2742      into
2743           int (*cb)(X509_STORE_CTX *,void *);
2744      in ssl_verify_cert_chain (ssl/ssl_cert.c), the call
2745           i=s->ctx->app_verify_callback(&ctx)
2746      has been changed into
2747           i=s->ctx->app_verify_callback(&ctx, s->ctx->app_verify_arg).
2748
2749      To update applications using SSL_CTX_set_cert_verify_callback(),
2750      a dummy argument can be added to their callback functions.
2751      [D. K. Smetters <smetters@parc.xerox.com>]
2752
2753   *) Added the '4758cca' ENGINE to support IBM 4758 cards.
2754      [Maurice Gittens <maurice@gittens.nl>, touchups by Geoff Thorpe]
2755
2756   *) Add and OPENSSL_LOAD_CONF define which will cause
2757      OpenSSL_add_all_algorithms() to load the openssl.cnf config file.
2758      This allows older applications to transparently support certain
2759      OpenSSL features: such as crypto acceleration and dynamic ENGINE loading.
2760      Two new functions OPENSSL_add_all_algorithms_noconf() which will never
2761      load the config file and OPENSSL_add_all_algorithms_conf() which will
2762      always load it have also been added.
2763      [Steve Henson]
2764
2765   *) Add the OFB, CFB and CTR (all with 128 bit feedback) to AES.
2766      Adjust NIDs and EVP layer.
2767      [Stephen Sprunk <stephen@sprunk.org> and Richard Levitte]
2768
2769   *) Config modules support in openssl utility.
2770
2771      Most commands now load modules from the config file,
2772      though in a few (such as version) this isn't done 
2773      because it couldn't be used for anything.
2774
2775      In the case of ca and req the config file used is
2776      the same as the utility itself: that is the -config
2777      command line option can be used to specify an
2778      alternative file.
2779      [Steve Henson]
2780
2781   *) Move default behaviour from OPENSSL_config(). If appname is NULL
2782      use "openssl_conf" if filename is NULL use default openssl config file.
2783      [Steve Henson]
2784
2785   *) Add an argument to OPENSSL_config() to allow the use of an alternative
2786      config section name. Add a new flag to tolerate a missing config file
2787      and move code to CONF_modules_load_file().
2788      [Steve Henson]
2789
2790   *) Support for crypto accelerator cards from Accelerated Encryption
2791      Processing, www.aep.ie.  (Use engine 'aep')
2792      The support was copied from 0.9.6c [engine] and adapted/corrected
2793      to work with the new engine framework.
2794      [AEP Inc. and Richard Levitte]
2795
2796   *) Support for SureWare crypto accelerator cards from Baltimore
2797      Technologies.  (Use engine 'sureware')
2798      The support was copied from 0.9.6c [engine] and adapted
2799      to work with the new engine framework.
2800      [Richard Levitte]
2801
2802   *) Have the CHIL engine fork-safe (as defined by nCipher) and actually
2803      make the newer ENGINE framework commands for the CHIL engine work.
2804      [Toomas Kiisk <vix@cyber.ee> and Richard Levitte]
2805
2806   *) Make it possible to produce shared libraries on ReliantUNIX.
2807      [Robert Dahlem <Robert.Dahlem@ffm2.siemens.de> via Richard Levitte]
2808
2809   *) Add the configuration target debug-linux-ppro.
2810      Make 'openssl rsa' use the general key loading routines
2811      implemented in apps.c, and make those routines able to
2812      handle the key format FORMAT_NETSCAPE and the variant
2813      FORMAT_IISSGC.
2814      [Toomas Kiisk <vix@cyber.ee> via Richard Levitte]
2815
2816  *) Fix a crashbug and a logic bug in hwcrhk_load_pubkey().
2817      [Toomas Kiisk <vix@cyber.ee> via Richard Levitte]
2818
2819   *) Add -keyform to rsautl, and document -engine.
2820      [Richard Levitte, inspired by Toomas Kiisk <vix@cyber.ee>]
2821
2822   *) Change BIO_new_file (crypto/bio/bss_file.c) to use new
2823      BIO_R_NO_SUCH_FILE error code rather than the generic
2824      ERR_R_SYS_LIB error code if fopen() fails with ENOENT.
2825      [Ben Laurie]
2826
2827   *) Add new functions
2828           ERR_peek_last_error
2829           ERR_peek_last_error_line
2830           ERR_peek_last_error_line_data.
2831      These are similar to
2832           ERR_peek_error
2833           ERR_peek_error_line
2834           ERR_peek_error_line_data,
2835      but report on the latest error recorded rather than the first one
2836      still in the error queue.
2837      [Ben Laurie, Bodo Moeller]
2838         
2839   *) default_algorithms option in ENGINE config module. This allows things
2840      like:
2841      default_algorithms = ALL
2842      default_algorithms = RSA, DSA, RAND, CIPHERS, DIGESTS
2843      [Steve Henson]
2844
2845   *) Prelminary ENGINE config module.
2846      [Steve Henson]
2847
2848   *) New experimental application configuration code.
2849      [Steve Henson]
2850
2851   *) Change the AES code to follow the same name structure as all other
2852      symmetric ciphers, and behave the same way.  Move everything to
2853      the directory crypto/aes, thereby obsoleting crypto/rijndael.
2854      [Stephen Sprunk <stephen@sprunk.org> and Richard Levitte]
2855
2856   *) SECURITY: remove unsafe setjmp/signal interaction from ui_openssl.c.
2857      [Ben Laurie and Theo de Raadt]
2858
2859   *) Add option to output public keys in req command.
2860      [Massimiliano Pala madwolf@openca.org]
2861
2862   *) Use wNAFs in EC_POINTs_mul() for improved efficiency
2863      (up to about 10% better than before for P-192 and P-224).
2864      [Bodo Moeller]
2865
2866   *) New functions/macros
2867
2868           SSL_CTX_set_msg_callback(ctx, cb)
2869           SSL_CTX_set_msg_callback_arg(ctx, arg)
2870           SSL_set_msg_callback(ssl, cb)
2871           SSL_set_msg_callback_arg(ssl, arg)
2872
2873      to request calling a callback function
2874
2875           void cb(int write_p, int version, int content_type,
2876                   const void *buf, size_t len, SSL *ssl, void *arg)
2877
2878      whenever a protocol message has been completely received
2879      (write_p == 0) or sent (write_p == 1).  Here 'version' is the
2880      protocol version  according to which the SSL library interprets
2881      the current protocol message (SSL2_VERSION, SSL3_VERSION, or
2882      TLS1_VERSION).  'content_type' is 0 in the case of SSL 2.0, or
2883      the content type as defined in the SSL 3.0/TLS 1.0 protocol
2884      specification (change_cipher_spec(20), alert(21), handshake(22)).
2885      'buf' and 'len' point to the actual message, 'ssl' to the
2886      SSL object, and 'arg' is the application-defined value set by
2887      SSL[_CTX]_set_msg_callback_arg().
2888
2889      'openssl s_client' and 'openssl s_server' have new '-msg' options
2890      to enable a callback that displays all protocol messages.
2891      [Bodo Moeller]
2892
2893   *) Change the shared library support so shared libraries are built as
2894      soon as the corresponding static library is finished, and thereby get
2895      openssl and the test programs linked against the shared library.
2896      This still only happens when the keyword "shard" has been given to
2897      the configuration scripts.
2898
2899      NOTE: shared library support is still an experimental thing, and
2900      backward binary compatibility is still not guaranteed.
2901      ["Maciej W. Rozycki" <macro@ds2.pg.gda.pl> and Richard Levitte]
2902
2903   *) Add support for Subject Information Access extension.
2904      [Peter Sylvester <Peter.Sylvester@EdelWeb.fr>]
2905
2906   *) Make BUF_MEM_grow() behaviour more consistent: Initialise to zero
2907      additional bytes when new memory had to be allocated, not just
2908      when reusing an existing buffer.
2909      [Bodo Moeller]
2910
2911   *) New command line and configuration option 'utf8' for the req command.
2912      This allows field values to be specified as UTF8 strings.
2913      [Steve Henson]
2914
2915   *) Add -multi and -mr options to "openssl speed" - giving multiple parallel
2916      runs for the former and machine-readable output for the latter.
2917      [Ben Laurie]
2918
2919   *) Add '-noemailDN' option to 'openssl ca'.  This prevents inclusion
2920      of the e-mail address in the DN (i.e., it will go into a certificate
2921      extension only).  The new configuration file option 'email_in_dn = no'
2922      has the same effect.
2923      [Massimiliano Pala madwolf@openca.org]
2924
2925   *) Change all functions with names starting with des_ to be starting
2926      with DES_ instead.  Add wrappers that are compatible with libdes,
2927      but are named _ossl_old_des_*.  Finally, add macros that map the
2928      des_* symbols to the corresponding _ossl_old_des_* if libdes
2929      compatibility is desired.  If OpenSSL 0.9.6c compatibility is
2930      desired, the des_* symbols will be mapped to DES_*, with one
2931      exception.
2932
2933      Since we provide two compatibility mappings, the user needs to
2934      define the macro OPENSSL_DES_LIBDES_COMPATIBILITY if libdes
2935      compatibility is desired.  The default (i.e., when that macro
2936      isn't defined) is OpenSSL 0.9.6c compatibility.
2937
2938      There are also macros that enable and disable the support of old
2939      des functions altogether.  Those are OPENSSL_ENABLE_OLD_DES_SUPPORT
2940      and OPENSSL_DISABLE_OLD_DES_SUPPORT.  If none or both of those
2941      are defined, the default will apply: to support the old des routines.
2942
2943      In either case, one must include openssl/des.h to get the correct
2944      definitions.  Do not try to just include openssl/des_old.h, that
2945      won't work.
2946
2947      NOTE: This is a major break of an old API into a new one.  Software
2948      authors are encouraged to switch to the DES_ style functions.  Some
2949      time in the future, des_old.h and the libdes compatibility functions
2950      will be disable (i.e. OPENSSL_DISABLE_OLD_DES_SUPPORT will be the
2951      default), and then completely removed.
2952      [Richard Levitte]
2953
2954   *) Test for certificates which contain unsupported critical extensions.
2955      If such a certificate is found during a verify operation it is 
2956      rejected by default: this behaviour can be overridden by either
2957      handling the new error X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION or
2958      by setting the verify flag X509_V_FLAG_IGNORE_CRITICAL. A new function
2959      X509_supported_extension() has also been added which returns 1 if a
2960      particular extension is supported.
2961      [Steve Henson]
2962
2963   *) Modify the behaviour of EVP cipher functions in similar way to digests
2964      to retain compatibility with existing code.
2965      [Steve Henson]
2966
2967   *) Modify the behaviour of EVP_DigestInit() and EVP_DigestFinal() to retain
2968      compatibility with existing code. In particular the 'ctx' parameter does
2969      not have to be to be initialized before the call to EVP_DigestInit() and
2970      it is tidied up after a call to EVP_DigestFinal(). New function
2971      EVP_DigestFinal_ex() which does not tidy up the ctx. Similarly function
2972      EVP_MD_CTX_copy() changed to not require the destination to be
2973      initialized valid and new function EVP_MD_CTX_copy_ex() added which
2974      requires the destination to be valid.
2975
2976      Modify all the OpenSSL digest calls to use EVP_DigestInit_ex(),
2977      EVP_DigestFinal_ex() and EVP_MD_CTX_copy_ex().
2978      [Steve Henson]
2979
2980   *) Change ssl3_get_message (ssl/s3_both.c) and the functions using it
2981      so that complete 'Handshake' protocol structures are kept in memory
2982      instead of overwriting 'msg_type' and 'length' with 'body' data.
2983      [Bodo Moeller]
2984
2985   *) Add an implementation of SSL_add_dir_cert_subjects_to_stack for Win32.
2986      [Massimo Santin via Richard Levitte]
2987
2988   *) Major restructuring to the underlying ENGINE code. This includes
2989      reduction of linker bloat, separation of pure "ENGINE" manipulation
2990      (initialisation, etc) from functionality dealing with implementations
2991      of specific crypto iterfaces. This change also introduces integrated
2992      support for symmetric ciphers and digest implementations - so ENGINEs
2993      can now accelerate these by providing EVP_CIPHER and EVP_MD
2994      implementations of their own. This is detailed in crypto/engine/README
2995      as it couldn't be adequately described here. However, there are a few
2996      API changes worth noting - some RSA, DSA, DH, and RAND functions that
2997      were changed in the original introduction of ENGINE code have now
2998      reverted back - the hooking from this code to ENGINE is now a good
2999      deal more passive and at run-time, operations deal directly with
3000      RSA_METHODs, DSA_METHODs (etc) as they did before, rather than
3001      dereferencing through an ENGINE pointer any more. Also, the ENGINE
3002      functions dealing with BN_MOD_EXP[_CRT] handlers have been removed -
3003      they were not being used by the framework as there is no concept of a
3004      BIGNUM_METHOD and they could not be generalised to the new
3005      'ENGINE_TABLE' mechanism that underlies the new code. Similarly,
3006      ENGINE_cpy() has been removed as it cannot be consistently defined in
3007      the new code.
3008      [Geoff Thorpe]
3009
3010   *) Change ASN1_GENERALIZEDTIME_check() to allow fractional seconds.
3011      [Steve Henson]
3012
3013   *) Change mkdef.pl to sort symbols that get the same entry number,
3014      and make sure the automatically generated functions ERR_load_*
3015      become part of libeay.num as well.
3016      [Richard Levitte]
3017
3018   *) New function SSL_renegotiate_pending().  This returns true once
3019      renegotiation has been requested (either SSL_renegotiate() call
3020      or HelloRequest/ClientHello receveived from the peer) and becomes
3021      false once a handshake has been completed.
3022      (For servers, SSL_renegotiate() followed by SSL_do_handshake()
3023      sends a HelloRequest, but does not ensure that a handshake takes
3024      place.  SSL_renegotiate_pending() is useful for checking if the
3025      client has followed the request.)
3026      [Bodo Moeller]
3027
3028   *) New SSL option SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION.
3029      By default, clients may request session resumption even during
3030      renegotiation (if session ID contexts permit); with this option,
3031      session resumption is possible only in the first handshake.
3032
3033      SSL_OP_ALL is now 0x00000FFFL instead of 0x000FFFFFL.  This makes
3034      more bits available for options that should not be part of
3035      SSL_OP_ALL (such as SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION).
3036      [Bodo Moeller]
3037
3038   *) Add some demos for certificate and certificate request creation.
3039      [Steve Henson]
3040
3041   *) Make maximum certificate chain size accepted from the peer application
3042      settable (SSL*_get/set_max_cert_list()), as proposed by
3043      "Douglas E. Engert" <deengert@anl.gov>.
3044      [Lutz Jaenicke]
3045
3046   *) Add support for shared libraries for Unixware-7
3047      (Boyd Lynn Gerber <gerberb@zenez.com>).
3048      [Lutz Jaenicke]
3049
3050   *) Add a "destroy" handler to ENGINEs that allows structural cleanup to
3051      be done prior to destruction. Use this to unload error strings from
3052      ENGINEs that load their own error strings. NB: This adds two new API
3053      functions to "get" and "set" this destroy handler in an ENGINE.
3054      [Geoff Thorpe]
3055
3056   *) Alter all existing ENGINE implementations (except "openssl" and
3057      "openbsd") to dynamically instantiate their own error strings. This
3058      makes them more flexible to be built both as statically-linked ENGINEs
3059      and self-contained shared-libraries loadable via the "dynamic" ENGINE.
3060      Also, add stub code to each that makes building them as self-contained
3061      shared-libraries easier (see README.ENGINE).
3062      [Geoff Thorpe]
3063
3064   *) Add a "dynamic" ENGINE that provides a mechanism for binding ENGINE
3065      implementations into applications that are completely implemented in
3066      self-contained shared-libraries. The "dynamic" ENGINE exposes control
3067      commands that can be used to configure what shared-library to load and
3068      to control aspects of the way it is handled. Also, made an update to
3069      the README.ENGINE file that brings its information up-to-date and
3070      provides some information and instructions on the "dynamic" ENGINE
3071      (ie. how to use it, how to build "dynamic"-loadable ENGINEs, etc).
3072      [Geoff Thorpe]
3073
3074   *) Make it possible to unload ranges of ERR strings with a new
3075      "ERR_unload_strings" function.
3076      [Geoff Thorpe]
3077
3078   *) Add a copy() function to EVP_MD.
3079      [Ben Laurie]
3080
3081   *) Make EVP_MD routines take a context pointer instead of just the
3082      md_data void pointer.
3083      [Ben Laurie]
3084
3085   *) Add flags to EVP_MD and EVP_MD_CTX. EVP_MD_FLAG_ONESHOT indicates
3086      that the digest can only process a single chunk of data
3087      (typically because it is provided by a piece of
3088      hardware). EVP_MD_CTX_FLAG_ONESHOT indicates that the application
3089      is only going to provide a single chunk of data, and hence the
3090      framework needn't accumulate the data for oneshot drivers.
3091      [Ben Laurie]
3092
3093   *) As with "ERR", make it possible to replace the underlying "ex_data"
3094      functions. This change also alters the storage and management of global
3095      ex_data state - it's now all inside ex_data.c and all "class" code (eg.
3096      RSA, BIO, SSL_CTX, etc) no longer stores its own STACKS and per-class
3097      index counters. The API functions that use this state have been changed
3098      to take a "class_index" rather than pointers to the class's local STACK
3099      and counter, and there is now an API function to dynamically create new
3100      classes. This centralisation allows us to (a) plug a lot of the
3101      thread-safety problems that existed, and (b) makes it possible to clean
3102      up all allocated state using "CRYPTO_cleanup_all_ex_data()". W.r.t. (b)
3103      such data would previously have always leaked in application code and
3104      workarounds were in place to make the memory debugging turn a blind eye
3105      to it. Application code that doesn't use this new function will still
3106      leak as before, but their memory debugging output will announce it now
3107      rather than letting it slide.
3108
3109      Besides the addition of CRYPTO_cleanup_all_ex_data(), another API change
3110      induced by the "ex_data" overhaul is that X509_STORE_CTX_init() now
3111      has a return value to indicate success or failure.
3112      [Geoff Thorpe]
3113
3114   *) Make it possible to replace the underlying "ERR" functions such that the
3115      global state (2 LHASH tables and 2 locks) is only used by the "default"
3116      implementation. This change also adds two functions to "get" and "set"
3117      the implementation prior to it being automatically set the first time
3118      any other ERR function takes place. Ie. an application can call "get",
3119      pass the return value to a module it has just loaded, and that module
3120      can call its own "set" function using that value. This means the
3121      module's "ERR" operations will use (and modify) the error state in the
3122      application and not in its own statically linked copy of OpenSSL code.
3123      [Geoff Thorpe]
3124
3125   *) Give DH, DSA, and RSA types their own "**_up_ref()" function to increment
3126      reference counts. This performs normal REF_PRINT/REF_CHECK macros on
3127      the operation, and provides a more encapsulated way for external code
3128      (crypto/evp/ and ssl/) to do this. Also changed the evp and ssl code
3129      to use these functions rather than manually incrementing the counts.
3130
3131      Also rename "DSO_up()" function to more descriptive "DSO_up_ref()".
3132      [Geoff Thorpe]
3133
3134   *) Add EVP test program.
3135      [Ben Laurie]
3136
3137   *) Add symmetric cipher support to ENGINE. Expect the API to change!
3138      [Ben Laurie]
3139
3140   *) New CRL functions: X509_CRL_set_version(), X509_CRL_set_issuer_name()
3141      X509_CRL_set_lastUpdate(), X509_CRL_set_nextUpdate(), X509_CRL_sort(),
3142      X509_REVOKED_set_serialNumber(), and X509_REVOKED_set_revocationDate().
3143      These allow a CRL to be built without having to access X509_CRL fields
3144      directly. Modify 'ca' application to use new functions.
3145      [Steve Henson]
3146
3147   *) Move SSL_OP_TLS_ROLLBACK_BUG out of the SSL_OP_ALL list of recommended
3148      bug workarounds. Rollback attack detection is a security feature.
3149      The problem will only arise on OpenSSL servers when TLSv1 is not
3150      available (sslv3_server_method() or SSL_OP_NO_TLSv1).
3151      Software authors not wanting to support TLSv1 will have special reasons
3152      for their choice and can explicitly enable this option.
3153      [Bodo Moeller, Lutz Jaenicke]
3154
3155   *) Rationalise EVP so it can be extended: don't include a union of
3156      cipher/digest structures, add init/cleanup functions for EVP_MD_CTX
3157      (similar to those existing for EVP_CIPHER_CTX).
3158      Usage example:
3159
3160          EVP_MD_CTX md;
3161
3162          EVP_MD_CTX_init(&md);             /* new function call */
3163          EVP_DigestInit(&md, EVP_sha1());
3164          EVP_DigestUpdate(&md, in, len);
3165          EVP_DigestFinal(&md, out, NULL);
3166          EVP_MD_CTX_cleanup(&md);          /* new function call */
3167
3168      [Ben Laurie]
3169
3170   *) Make DES key schedule conform to the usual scheme, as well as
3171      correcting its structure. This means that calls to DES functions
3172      now have to pass a pointer to a des_key_schedule instead of a
3173      plain des_key_schedule (which was actually always a pointer
3174      anyway): E.g.,
3175
3176          des_key_schedule ks;
3177
3178          des_set_key_checked(..., &ks);
3179          des_ncbc_encrypt(..., &ks, ...);
3180
3181      (Note that a later change renames 'des_...' into 'DES_...'.)
3182      [Ben Laurie]
3183
3184   *) Initial reduction of linker bloat: the use of some functions, such as
3185      PEM causes large amounts of unused functions to be linked in due to
3186      poor organisation. For example pem_all.c contains every PEM function
3187      which has a knock on effect of linking in large amounts of (unused)
3188      ASN1 code. Grouping together similar functions and splitting unrelated
3189      functions prevents this.
3190      [Steve Henson]
3191
3192   *) Cleanup of EVP macros.
3193      [Ben Laurie]
3194
3195   *) Change historical references to {NID,SN,LN}_des_ede and ede3 to add the
3196      correct _ecb suffix.
3197      [Ben Laurie]
3198
3199   *) Add initial OCSP responder support to ocsp application. The
3200      revocation information is handled using the text based index
3201      use by the ca application. The responder can either handle
3202      requests generated internally, supplied in files (for example
3203      via a CGI script) or using an internal minimal server.
3204      [Steve Henson]
3205
3206   *) Add configuration choices to get zlib compression for TLS.
3207      [Richard Levitte]
3208
3209   *) Changes to Kerberos SSL for RFC 2712 compliance:
3210      1.  Implemented real KerberosWrapper, instead of just using
3211          KRB5 AP_REQ message.  [Thanks to Simon Wilkinson <sxw@sxw.org.uk>]
3212      2.  Implemented optional authenticator field of KerberosWrapper.
3213
3214      Added openssl-style ASN.1 macros for Kerberos ticket, ap_req,
3215      and authenticator structs; see crypto/krb5/.
3216
3217      Generalized Kerberos calls to support multiple Kerberos libraries.
3218      [Vern Staats <staatsvr@asc.hpc.mil>,
3219       Jeffrey Altman <jaltman@columbia.edu>
3220       via Richard Levitte]
3221
3222   *) Cause 'openssl speed' to use fully hard-coded DSA keys as it
3223      already does with RSA. testdsa.h now has 'priv_key/pub_key'
3224      values for each of the key sizes rather than having just
3225      parameters (and 'speed' generating keys each time).
3226      [Geoff Thorpe]
3227
3228   *) Speed up EVP routines.
3229      Before:
3230 encrypt
3231 type              8 bytes     64 bytes    256 bytes   1024 bytes   8192 bytes
3232 des-cbc           4408.85k     5560.51k     5778.46k     5862.20k     5825.16k
3233 des-cbc           4389.55k     5571.17k     5792.23k     5846.91k     5832.11k
3234 des-cbc           4394.32k     5575.92k     5807.44k     5848.37k     5841.30k
3235 decrypt
3236 des-cbc           3482.66k     5069.49k     5496.39k     5614.16k     5639.28k
3237 des-cbc           3480.74k     5068.76k     5510.34k     5609.87k     5635.52k
3238 des-cbc           3483.72k     5067.62k     5504.60k     5708.01k     5724.80k
3239      After:
3240 encrypt
3241 des-cbc           4660.16k     5650.19k     5807.19k     5827.13k     5783.32k
3242 decrypt
3243 des-cbc           3624.96k     5258.21k     5530.91k     5624.30k     5628.26k
3244      [Ben Laurie]
3245
3246   *) Added the OS2-EMX target.
3247      ["Brian Havard" <brianh@kheldar.apana.org.au> and Richard Levitte]
3248
3249   *) Rewrite apps to use NCONF routines instead of the old CONF. New functions
3250      to support NCONF routines in extension code. New function CONF_set_nconf()
3251      to allow functions which take an NCONF to also handle the old LHASH
3252      structure: this means that the old CONF compatible routines can be
3253      retained (in particular wrt extensions) without having to duplicate the
3254      code. New function X509V3_add_ext_nconf_sk to add extensions to a stack.
3255      [Steve Henson]
3256
3257   *) Enhance the general user interface with mechanisms for inner control
3258      and with possibilities to have yes/no kind of prompts.
3259      [Richard Levitte]
3260
3261   *) Change all calls to low level digest routines in the library and
3262      applications to use EVP. Add missing calls to HMAC_cleanup() and
3263      don't assume HMAC_CTX can be copied using memcpy().
3264      [Verdon Walker <VWalker@novell.com>, Steve Henson]
3265
3266   *) Add the possibility to control engines through control names but with
3267      arbitrary arguments instead of just a string.
3268      Change the key loaders to take a UI_METHOD instead of a callback
3269      function pointer.  NOTE: this breaks binary compatibility with earlier
3270      versions of OpenSSL [engine].
3271      Adapt the nCipher code for these new conditions and add a card insertion
3272      callback.
3273      [Richard Levitte]
3274
3275   *) Enhance the general user interface with mechanisms to better support
3276      dialog box interfaces, application-defined prompts, the possibility
3277      to use defaults (for example default passwords from somewhere else)
3278      and interrupts/cancellations.
3279      [Richard Levitte]
3280
3281   *) Tidy up PKCS#12 attribute handling. Add support for the CSP name
3282      attribute in PKCS#12 files, add new -CSP option to pkcs12 utility.
3283      [Steve Henson]
3284
3285   *) Fix a memory leak in 'sk_dup()' in the case reallocation fails. (Also
3286      tidy up some unnecessarily weird code in 'sk_new()').
3287      [Geoff, reported by Diego Tartara <dtartara@novamens.com>]
3288
3289   *) Change the key loading routines for ENGINEs to use the same kind
3290      callback (pem_password_cb) as all other routines that need this
3291      kind of callback.
3292      [Richard Levitte]
3293
3294   *) Increase ENTROPY_NEEDED to 32 bytes, as Rijndael can operate with
3295      256 bit (=32 byte) keys. Of course seeding with more entropy bytes
3296      than this minimum value is recommended.
3297      [Lutz Jaenicke]
3298
3299   *) New random seeder for OpenVMS, using the system process statistics
3300      that are easily reachable.
3301      [Richard Levitte]
3302
3303   *) Windows apparently can't transparently handle global
3304      variables defined in DLLs. Initialisations such as:
3305
3306         const ASN1_ITEM *it = &ASN1_INTEGER_it;
3307
3308      wont compile. This is used by the any applications that need to
3309      declare their own ASN1 modules. This was fixed by adding the option
3310      EXPORT_VAR_AS_FN to all Win32 platforms, although this isn't strictly
3311      needed for static libraries under Win32.
3312      [Steve Henson]
3313
3314   *) New functions X509_PURPOSE_set() and X509_TRUST_set() to handle
3315      setting of purpose and trust fields. New X509_STORE trust and
3316      purpose functions and tidy up setting in other SSL functions.
3317      [Steve Henson]
3318
3319   *) Add copies of X509_STORE_CTX fields and callbacks to X509_STORE
3320      structure. These are inherited by X509_STORE_CTX when it is 
3321      initialised. This allows various defaults to be set in the
3322      X509_STORE structure (such as flags for CRL checking and custom
3323      purpose or trust settings) for functions which only use X509_STORE_CTX
3324      internally such as S/MIME.
3325
3326      Modify X509_STORE_CTX_purpose_inherit() so it only sets purposes and
3327      trust settings if they are not set in X509_STORE. This allows X509_STORE
3328      purposes and trust (in S/MIME for example) to override any set by default.
3329
3330      Add command line options for CRL checking to smime, s_client and s_server
3331      applications.
3332      [Steve Henson]
3333
3334   *) Initial CRL based revocation checking. If the CRL checking flag(s)
3335      are set then the CRL is looked up in the X509_STORE structure and
3336      its validity and signature checked, then if the certificate is found
3337      in the CRL the verify fails with a revoked error.
3338
3339      Various new CRL related callbacks added to X509_STORE_CTX structure.
3340
3341      Command line options added to 'verify' application to support this.
3342
3343      This needs some additional work, such as being able to handle multiple
3344      CRLs with different times, extension based lookup (rather than just
3345      by subject name) and ultimately more complete V2 CRL extension
3346      handling.
3347      [Steve Henson]
3348
3349   *) Add a general user interface API (crypto/ui/).  This is designed
3350      to replace things like des_read_password and friends (backward
3351      compatibility functions using this new API are provided).
3352      The purpose is to remove prompting functions from the DES code
3353      section as well as provide for prompting through dialog boxes in
3354      a window system and the like.
3355      [Richard Levitte]
3356
3357   *) Add "ex_data" support to ENGINE so implementations can add state at a
3358      per-structure level rather than having to store it globally.
3359      [Geoff]
3360
3361   *) Make it possible for ENGINE structures to be copied when retrieved by
3362      ENGINE_by_id() if the ENGINE specifies a new flag: ENGINE_FLAGS_BY_ID_COPY.
3363      This causes the "original" ENGINE structure to act like a template,
3364      analogous to the RSA vs. RSA_METHOD type of separation. Because of this
3365      operational state can be localised to each ENGINE structure, despite the
3366      fact they all share the same "methods". New ENGINE structures returned in
3367      this case have no functional references and the return value is the single
3368      structural reference. This matches the single structural reference returned
3369      by ENGINE_by_id() normally, when it is incremented on the pre-existing
3370      ENGINE structure.
3371      [Geoff]
3372
3373   *) Fix ASN1 decoder when decoding type ANY and V_ASN1_OTHER: since this
3374      needs to match any other type at all we need to manually clear the
3375      tag cache.
3376      [Steve Henson]
3377
3378   *) Changes to the "openssl engine" utility to include;
3379      - verbosity levels ('-v', '-vv', and '-vvv') that provide information
3380        about an ENGINE's available control commands.
3381      - executing control commands from command line arguments using the
3382        '-pre' and '-post' switches. '-post' is only used if '-t' is
3383        specified and the ENGINE is successfully initialised. The syntax for
3384        the individual commands are colon-separated, for example;
3385          openssl engine chil -pre FORK_CHECK:0 -pre SO_PATH:/lib/test.so
3386      [Geoff]
3387
3388   *) New dynamic control command support for ENGINEs. ENGINEs can now
3389      declare their own commands (numbers), names (strings), descriptions,
3390      and input types for run-time discovery by calling applications. A
3391      subset of these commands are implicitly classed as "executable"
3392      depending on their input type, and only these can be invoked through
3393      the new string-based API function ENGINE_ctrl_cmd_string(). (Eg. this
3394      can be based on user input, config files, etc). The distinction is
3395      that "executable" commands cannot return anything other than a boolean
3396      result and can only support numeric or string input, whereas some
3397      discoverable commands may only be for direct use through
3398      ENGINE_ctrl(), eg. supporting the exchange of binary data, function
3399      pointers, or other custom uses. The "executable" commands are to
3400      support parameterisations of ENGINE behaviour that can be
3401      unambiguously defined by ENGINEs and used consistently across any
3402      OpenSSL-based application. Commands have been added to all the
3403      existing hardware-supporting ENGINEs, noticeably "SO_PATH" to allow
3404      control over shared-library paths without source code alterations.
3405      [Geoff]
3406
3407   *) Changed all ENGINE implementations to dynamically allocate their
3408      ENGINEs rather than declaring them statically. Apart from this being
3409      necessary with the removal of the ENGINE_FLAGS_MALLOCED distinction,
3410      this also allows the implementations to compile without using the
3411      internal engine_int.h header.
3412      [Geoff]
3413
3414   *) Minor adjustment to "rand" code. RAND_get_rand_method() now returns a
3415      'const' value. Any code that should be able to modify a RAND_METHOD
3416      should already have non-const pointers to it (ie. they should only
3417      modify their own ones).
3418      [Geoff]
3419
3420   *) Made a variety of little tweaks to the ENGINE code.
3421      - "atalla" and "ubsec" string definitions were moved from header files
3422        to C code. "nuron" string definitions were placed in variables
3423        rather than hard-coded - allowing parameterisation of these values
3424        later on via ctrl() commands.
3425      - Removed unused "#if 0"'d code.
3426      - Fixed engine list iteration code so it uses ENGINE_free() to release
3427        structural references.
3428      - Constified the RAND_METHOD element of ENGINE structures.
3429      - Constified various get/set functions as appropriate and added
3430        missing functions (including a catch-all ENGINE_cpy that duplicates
3431        all ENGINE values onto a new ENGINE except reference counts/state).
3432      - Removed NULL parameter checks in get/set functions. Setting a method
3433        or function to NULL is a way of cancelling out a previously set
3434        value.  Passing a NULL ENGINE parameter is just plain stupid anyway
3435        and doesn't justify the extra error symbols and code.
3436      - Deprecate the ENGINE_FLAGS_MALLOCED define and move the area for
3437        flags from engine_int.h to engine.h.
3438      - Changed prototypes for ENGINE handler functions (init(), finish(),
3439        ctrl(), key-load functions, etc) to take an (ENGINE*) parameter.
3440      [Geoff]
3441
3442   *) Implement binary inversion algorithm for BN_mod_inverse in addition
3443      to the algorithm using long division.  The binary algorithm can be
3444      used only if the modulus is odd.  On 32-bit systems, it is faster
3445      only for relatively small moduli (roughly 20-30% for 128-bit moduli,
3446      roughly 5-15% for 256-bit moduli), so we use it only for moduli
3447      up to 450 bits.  In 64-bit environments, the binary algorithm
3448      appears to be advantageous for much longer moduli; here we use it
3449      for moduli up to 2048 bits.
3450      [Bodo Moeller]
3451
3452   *) Rewrite CHOICE field setting in ASN1_item_ex_d2i(). The old code
3453      could not support the combine flag in choice fields.
3454      [Steve Henson]
3455
3456   *) Add a 'copy_extensions' option to the 'ca' utility. This copies
3457      extensions from a certificate request to the certificate.
3458      [Steve Henson]
3459
3460   *) Allow multiple 'certopt' and 'nameopt' options to be separated
3461      by commas. Add 'namopt' and 'certopt' options to the 'ca' config
3462      file: this allows the display of the certificate about to be
3463      signed to be customised, to allow certain fields to be included
3464      or excluded and extension details. The old system didn't display
3465      multicharacter strings properly, omitted fields not in the policy
3466      and couldn't display additional details such as extensions.
3467      [Steve Henson]
3468
3469   *) Function EC_POINTs_mul for multiple scalar multiplication
3470      of an arbitrary number of elliptic curve points
3471           \sum scalars[i]*points[i],
3472      optionally including the generator defined for the EC_GROUP:
3473           scalar*generator +  \sum scalars[i]*points[i].
3474
3475      EC_POINT_mul is a simple wrapper function for the typical case
3476      that the point list has just one item (besides the optional
3477      generator).
3478      [Bodo Moeller]
3479
3480   *) First EC_METHODs for curves over GF(p):
3481
3482      EC_GFp_simple_method() uses the basic BN_mod_mul and BN_mod_sqr
3483      operations and provides various method functions that can also
3484      operate with faster implementations of modular arithmetic.     
3485
3486      EC_GFp_mont_method() reuses most functions that are part of
3487      EC_GFp_simple_method, but uses Montgomery arithmetic.
3488
3489      [Bodo Moeller; point addition and point doubling
3490      implementation directly derived from source code provided by
3491      Lenka Fibikova <fibikova@exp-math.uni-essen.de>]
3492
3493   *) Framework for elliptic curves (crypto/ec/ec.h, crypto/ec/ec_lcl.h,
3494      crypto/ec/ec_lib.c):
3495
3496      Curves are EC_GROUP objects (with an optional group generator)
3497      based on EC_METHODs that are built into the library.
3498
3499      Points are EC_POINT objects based on EC_GROUP objects.
3500
3501      Most of the framework would be able to handle curves over arbitrary
3502      finite fields, but as there are no obvious types for fields other
3503      than GF(p), some functions are limited to that for now.
3504      [Bodo Moeller]
3505
3506   *) Add the -HTTP option to s_server.  It is similar to -WWW, but requires
3507      that the file contains a complete HTTP response.
3508      [Richard Levitte]
3509
3510   *) Add the ec directory to mkdef.pl and mkfiles.pl. In mkdef.pl
3511      change the def and num file printf format specifier from "%-40sXXX"
3512      to "%-39s XXX". The latter will always guarantee a space after the
3513      field while the former will cause them to run together if the field
3514      is 40 of more characters long.
3515      [Steve Henson]
3516
3517   *) Constify the cipher and digest 'method' functions and structures
3518      and modify related functions to take constant EVP_MD and EVP_CIPHER
3519      pointers.
3520      [Steve Henson]
3521
3522   *) Hide BN_CTX structure details in bn_lcl.h instead of publishing them
3523      in <openssl/bn.h>.  Also further increase BN_CTX_NUM to 32.
3524      [Bodo Moeller]
3525
3526   *) Modify EVP_Digest*() routines so they now return values. Although the
3527      internal software routines can never fail additional hardware versions
3528      might.
3529      [Steve Henson]
3530
3531   *) Clean up crypto/err/err.h and change some error codes to avoid conflicts:
3532
3533      Previously ERR_R_FATAL was too small and coincided with ERR_LIB_PKCS7
3534      (= ERR_R_PKCS7_LIB); it is now 64 instead of 32.
3535
3536      ASN1 error codes
3537           ERR_R_NESTED_ASN1_ERROR
3538           ...
3539           ERR_R_MISSING_ASN1_EOS
3540      were 4 .. 9, conflicting with
3541           ERR_LIB_RSA (= ERR_R_RSA_LIB)
3542           ...
3543           ERR_LIB_PEM (= ERR_R_PEM_LIB).
3544      They are now 58 .. 63 (i.e., just below ERR_R_FATAL).
3545
3546      Add new error code 'ERR_R_INTERNAL_ERROR'.
3547      [Bodo Moeller]
3548
3549   *) Don't overuse locks in crypto/err/err.c: For data retrieval, CRYPTO_r_lock
3550      suffices.
3551      [Bodo Moeller]
3552
3553   *) New option '-subj arg' for 'openssl req' and 'openssl ca'.  This
3554      sets the subject name for a new request or supersedes the
3555      subject name in a given request. Formats that can be parsed are
3556           'CN=Some Name, OU=myOU, C=IT'
3557      and
3558           'CN=Some Name/OU=myOU/C=IT'.
3559
3560      Add options '-batch' and '-verbose' to 'openssl req'.
3561      [Massimiliano Pala <madwolf@hackmasters.net>]
3562
3563   *) Introduce the possibility to access global variables through
3564      functions on platform were that's the best way to handle exporting
3565      global variables in shared libraries.  To enable this functionality,
3566      one must configure with "EXPORT_VAR_AS_FN" or defined the C macro
3567      "OPENSSL_EXPORT_VAR_AS_FUNCTION" in crypto/opensslconf.h (the latter
3568      is normally done by Configure or something similar).
3569
3570      To implement a global variable, use the macro OPENSSL_IMPLEMENT_GLOBAL
3571      in the source file (foo.c) like this:
3572
3573         OPENSSL_IMPLEMENT_GLOBAL(int,foo)=1;
3574         OPENSSL_IMPLEMENT_GLOBAL(double,bar);
3575
3576      To declare a global variable, use the macros OPENSSL_DECLARE_GLOBAL
3577      and OPENSSL_GLOBAL_REF in the header file (foo.h) like this:
3578
3579         OPENSSL_DECLARE_GLOBAL(int,foo);
3580         #define foo OPENSSL_GLOBAL_REF(foo)
3581         OPENSSL_DECLARE_GLOBAL(double,bar);
3582         #define bar OPENSSL_GLOBAL_REF(bar)
3583
3584      The #defines are very important, and therefore so is including the
3585      header file everywhere where the defined globals are used.
3586
3587      The macro OPENSSL_EXPORT_VAR_AS_FUNCTION also affects the definition
3588      of ASN.1 items, but that structure is a bit different.
3589
3590      The largest change is in util/mkdef.pl which has been enhanced with
3591      better and easier to understand logic to choose which symbols should
3592      go into the Windows .def files as well as a number of fixes and code
3593      cleanup (among others, algorithm keywords are now sorted
3594      lexicographically to avoid constant rewrites).
3595      [Richard Levitte]
3596
3597   *) In BN_div() keep a copy of the sign of 'num' before writing the
3598      result to 'rm' because if rm==num the value will be overwritten
3599      and produce the wrong result if 'num' is negative: this caused
3600      problems with BN_mod() and BN_nnmod().
3601      [Steve Henson]
3602
3603   *) Function OCSP_request_verify(). This checks the signature on an
3604      OCSP request and verifies the signer certificate. The signer
3605      certificate is just checked for a generic purpose and OCSP request
3606      trust settings.
3607      [Steve Henson]
3608
3609   *) Add OCSP_check_validity() function to check the validity of OCSP
3610      responses. OCSP responses are prepared in real time and may only
3611      be a few seconds old. Simply checking that the current time lies
3612      between thisUpdate and nextUpdate max reject otherwise valid responses
3613      caused by either OCSP responder or client clock inaccuracy. Instead
3614      we allow thisUpdate and nextUpdate to fall within a certain period of
3615      the current time. The age of the response can also optionally be
3616      checked. Two new options -validity_period and -status_age added to
3617      ocsp utility.
3618      [Steve Henson]
3619
3620   *) If signature or public key algorithm is unrecognized print out its
3621      OID rather that just UNKNOWN.
3622      [Steve Henson]
3623
3624   *) Change OCSP_cert_to_id() to tolerate a NULL subject certificate and
3625      OCSP_cert_id_new() a NULL serialNumber. This allows a partial certificate
3626      ID to be generated from the issuer certificate alone which can then be
3627      passed to OCSP_id_issuer_cmp().
3628      [Steve Henson]
3629
3630   *) New compilation option ASN1_ITEM_FUNCTIONS. This causes the new
3631      ASN1 modules to export functions returning ASN1_ITEM pointers
3632      instead of the ASN1_ITEM structures themselves. This adds several
3633      new macros which allow the underlying ASN1 function/structure to
3634      be accessed transparently. As a result code should not use ASN1_ITEM
3635      references directly (such as &X509_it) but instead use the relevant
3636      macros (such as ASN1_ITEM_rptr(X509)). This option is to allow
3637      use of the new ASN1 code on platforms where exporting structures
3638      is problematical (for example in shared libraries) but exporting
3639      functions returning pointers to structures is not.
3640      [Steve Henson]
3641
3642   *) Add support for overriding the generation of SSL/TLS session IDs.
3643      These callbacks can be registered either in an SSL_CTX or per SSL.
3644      The purpose of this is to allow applications to control, if they wish,
3645      the arbitrary values chosen for use as session IDs, particularly as it
3646      can be useful for session caching in multiple-server environments. A
3647      command-line switch for testing this (and any client code that wishes
3648      to use such a feature) has been added to "s_server".
3649      [Geoff Thorpe, Lutz Jaenicke]
3650
3651   *) Modify mkdef.pl to recognise and parse preprocessor conditionals
3652      of the form '#if defined(...) || defined(...) || ...' and
3653      '#if !defined(...) && !defined(...) && ...'.  This also avoids
3654      the growing number of special cases it was previously handling.
3655      [Richard Levitte]
3656
3657   *) Make all configuration macros available for application by making
3658      sure they are available in opensslconf.h, by giving them names starting
3659      with "OPENSSL_" to avoid conflicts with other packages and by making
3660      sure e_os2.h will cover all platform-specific cases together with
3661      opensslconf.h.
3662      Additionally, it is now possible to define configuration/platform-
3663      specific names (called "system identities").  In the C code, these
3664      are prefixed with "OPENSSL_SYSNAME_".  e_os2.h will create another
3665      macro with the name beginning with "OPENSSL_SYS_", which is determined
3666      from "OPENSSL_SYSNAME_*" or compiler-specific macros depending on
3667      what is available.
3668      [Richard Levitte]
3669
3670   *) New option -set_serial to 'req' and 'x509' this allows the serial
3671      number to use to be specified on the command line. Previously self
3672      signed certificates were hard coded with serial number 0 and the 
3673      CA options of 'x509' had to use a serial number in a file which was
3674      auto incremented.
3675      [Steve Henson]
3676
3677   *) New options to 'ca' utility to support V2 CRL entry extensions.
3678      Currently CRL reason, invalidity date and hold instruction are
3679      supported. Add new CRL extensions to V3 code and some new objects.
3680      [Steve Henson]
3681
3682   *) New function EVP_CIPHER_CTX_set_padding() this is used to
3683      disable standard block padding (aka PKCS#5 padding) in the EVP
3684      API, which was previously mandatory. This means that the data is
3685      not padded in any way and so the total length much be a multiple
3686      of the block size, otherwise an error occurs.
3687      [Steve Henson]
3688
3689   *) Initial (incomplete) OCSP SSL support.
3690      [Steve Henson]
3691
3692   *) New function OCSP_parse_url(). This splits up a URL into its host,
3693      port and path components: primarily to parse OCSP URLs. New -url
3694      option to ocsp utility.
3695      [Steve Henson]
3696
3697   *) New nonce behavior. The return value of OCSP_check_nonce() now 
3698      reflects the various checks performed. Applications can decide
3699      whether to tolerate certain situations such as an absent nonce
3700      in a response when one was present in a request: the ocsp application
3701      just prints out a warning. New function OCSP_add1_basic_nonce()
3702      this is to allow responders to include a nonce in a response even if
3703      the request is nonce-less.
3704      [Steve Henson]
3705
3706   *) Disable stdin buffering in load_cert (apps/apps.c) so that no certs are
3707      skipped when using openssl x509 multiple times on a single input file,
3708      e.g. "(openssl x509 -out cert1; openssl x509 -out cert2) <certs".
3709      [Bodo Moeller]
3710
3711   *) Make ASN1_UTCTIME_set_string() and ASN1_GENERALIZEDTIME_set_string()
3712      set string type: to handle setting ASN1_TIME structures. Fix ca
3713      utility to correctly initialize revocation date of CRLs.
3714      [Steve Henson]
3715
3716   *) New option SSL_OP_CIPHER_SERVER_PREFERENCE allows the server to override
3717      the clients preferred ciphersuites and rather use its own preferences.
3718      Should help to work around M$ SGC (Server Gated Cryptography) bug in
3719      Internet Explorer by ensuring unchanged hash method during stepup.
3720      (Also replaces the broken/deactivated SSL_OP_NON_EXPORT_FIRST option.)
3721      [Lutz Jaenicke]
3722
3723   *) Make mkdef.pl recognise all DECLARE_ASN1 macros, change rijndael
3724      to aes and add a new 'exist' option to print out symbols that don't
3725      appear to exist.
3726      [Steve Henson]
3727
3728   *) Additional options to ocsp utility to allow flags to be set and
3729      additional certificates supplied.
3730      [Steve Henson]
3731
3732   *) Add the option -VAfile to 'openssl ocsp', so the user can give the
3733      OCSP client a number of certificate to only verify the response
3734      signature against.
3735      [Richard Levitte]
3736
3737   *) Update Rijndael code to version 3.0 and change EVP AES ciphers to
3738      handle the new API. Currently only ECB, CBC modes supported. Add new
3739      AES OIDs.
3740
3741      Add TLS AES ciphersuites as described in RFC3268, "Advanced
3742      Encryption Standard (AES) Ciphersuites for Transport Layer
3743      Security (TLS)".  (In beta versions of OpenSSL 0.9.7, these were
3744      not enabled by default and were not part of the "ALL" ciphersuite
3745      alias because they were not yet official; they could be
3746      explicitly requested by specifying the "AESdraft" ciphersuite
3747      group alias.  In the final release of OpenSSL 0.9.7, the group
3748      alias is called "AES" and is part of "ALL".)
3749      [Ben Laurie, Steve  Henson, Bodo Moeller]
3750
3751   *) New function OCSP_copy_nonce() to copy nonce value (if present) from
3752      request to response.
3753      [Steve Henson]
3754
3755   *) Functions for OCSP responders. OCSP_request_onereq_count(),
3756      OCSP_request_onereq_get0(), OCSP_onereq_get0_id() and OCSP_id_get0_info()
3757      extract information from a certificate request. OCSP_response_create()
3758      creates a response and optionally adds a basic response structure.
3759      OCSP_basic_add1_status() adds a complete single response to a basic
3760      response and returns the OCSP_SINGLERESP structure just added (to allow
3761      extensions to be included for example). OCSP_basic_add1_cert() adds a
3762      certificate to a basic response and OCSP_basic_sign() signs a basic
3763      response with various flags. New helper functions ASN1_TIME_check()
3764      (checks validity of ASN1_TIME structure) and ASN1_TIME_to_generalizedtime()
3765      (converts ASN1_TIME to GeneralizedTime).
3766      [Steve Henson]
3767
3768   *) Various new functions. EVP_Digest() combines EVP_Digest{Init,Update,Final}()
3769      in a single operation. X509_get0_pubkey_bitstr() extracts the public_key
3770      structure from a certificate. X509_pubkey_digest() digests the public_key
3771      contents: this is used in various key identifiers. 
3772      [Steve Henson]
3773
3774   *) Make sk_sort() tolerate a NULL argument.
3775      [Steve Henson reported by Massimiliano Pala <madwolf@comune.modena.it>]
3776
3777   *) New OCSP verify flag OCSP_TRUSTOTHER. When set the "other" certificates
3778      passed by the function are trusted implicitly. If any of them signed the
3779      response then it is assumed to be valid and is not verified.
3780      [Steve Henson]
3781
3782   *) In PKCS7_set_type() initialise content_type in PKCS7_ENC_CONTENT
3783      to data. This was previously part of the PKCS7 ASN1 code. This
3784      was causing problems with OpenSSL created PKCS#12 and PKCS#7 structures.
3785      [Steve Henson, reported by Kenneth R. Robinette
3786                                 <support@securenetterm.com>]
3787
3788   *) Add CRYPTO_push_info() and CRYPTO_pop_info() calls to new ASN1
3789      routines: without these tracing memory leaks is very painful.
3790      Fix leaks in PKCS12 and PKCS7 routines.
3791      [Steve Henson]
3792
3793   *) Make X509_time_adj() cope with the new behaviour of ASN1_TIME_new().
3794      Previously it initialised the 'type' argument to V_ASN1_UTCTIME which
3795      effectively meant GeneralizedTime would never be used. Now it
3796      is initialised to -1 but X509_time_adj() now has to check the value
3797      and use ASN1_TIME_set() if the value is not V_ASN1_UTCTIME or
3798      V_ASN1_GENERALIZEDTIME, without this it always uses GeneralizedTime.
3799      [Steve Henson, reported by Kenneth R. Robinette
3800                                 <support@securenetterm.com>]
3801
3802   *) Fixes to BN_to_ASN1_INTEGER when bn is zero. This would previously
3803      result in a zero length in the ASN1_INTEGER structure which was
3804      not consistent with the structure when d2i_ASN1_INTEGER() was used
3805      and would cause ASN1_INTEGER_cmp() to fail. Enhance s2i_ASN1_INTEGER()
3806      to cope with hex and negative integers. Fix bug in i2a_ASN1_INTEGER()
3807      where it did not print out a minus for negative ASN1_INTEGER.
3808      [Steve Henson]
3809
3810   *) Add summary printout to ocsp utility. The various functions which
3811      convert status values to strings have been renamed to:
3812      OCSP_response_status_str(), OCSP_cert_status_str() and
3813      OCSP_crl_reason_str() and are no longer static. New options
3814      to verify nonce values and to disable verification. OCSP response
3815      printout format cleaned up.
3816      [Steve Henson]
3817
3818   *) Add additional OCSP certificate checks. These are those specified
3819      in RFC2560. This consists of two separate checks: the CA of the
3820      certificate being checked must either be the OCSP signer certificate
3821      or the issuer of the OCSP signer certificate. In the latter case the
3822      OCSP signer certificate must contain the OCSP signing extended key
3823      usage. This check is performed by attempting to match the OCSP
3824      signer or the OCSP signer CA to the issuerNameHash and issuerKeyHash
3825      in the OCSP_CERTID structures of the response.
3826      [Steve Henson]
3827
3828   *) Initial OCSP certificate verification added to OCSP_basic_verify()
3829      and related routines. This uses the standard OpenSSL certificate
3830      verify routines to perform initial checks (just CA validity) and
3831      to obtain the certificate chain. Then additional checks will be
3832      performed on the chain. Currently the root CA is checked to see
3833      if it is explicitly trusted for OCSP signing. This is used to set
3834      a root CA as a global signing root: that is any certificate that
3835      chains to that CA is an acceptable OCSP signing certificate.
3836      [Steve Henson]
3837
3838   *) New '-extfile ...' option to 'openssl ca' for reading X.509v3
3839      extensions from a separate configuration file.
3840      As when reading extensions from the main configuration file,
3841      the '-extensions ...' option may be used for specifying the
3842      section to use.
3843      [Massimiliano Pala <madwolf@comune.modena.it>]
3844
3845   *) New OCSP utility. Allows OCSP requests to be generated or
3846      read. The request can be sent to a responder and the output
3847      parsed, outputed or printed in text form. Not complete yet:
3848      still needs to check the OCSP response validity.
3849      [Steve Henson]
3850
3851   *) New subcommands for 'openssl ca':
3852      'openssl ca -status <serial>' prints the status of the cert with
3853      the given serial number (according to the index file).
3854      'openssl ca -updatedb' updates the expiry status of certificates
3855      in the index file.
3856      [Massimiliano Pala <madwolf@comune.modena.it>]
3857
3858   *) New '-newreq-nodes' command option to CA.pl.  This is like
3859      '-newreq', but calls 'openssl req' with the '-nodes' option
3860      so that the resulting key is not encrypted.
3861      [Damien Miller <djm@mindrot.org>]
3862
3863   *) New configuration for the GNU Hurd.
3864      [Jonathan Bartlett <johnnyb@wolfram.com> via Richard Levitte]
3865
3866   *) Initial code to implement OCSP basic response verify. This
3867      is currently incomplete. Currently just finds the signer's
3868      certificate and verifies the signature on the response.
3869      [Steve Henson]
3870
3871   *) New SSLeay_version code SSLEAY_DIR to determine the compiled-in
3872      value of OPENSSLDIR.  This is available via the new '-d' option
3873      to 'openssl version', and is also included in 'openssl version -a'.
3874      [Bodo Moeller]
3875
3876   *) Allowing defining memory allocation callbacks that will be given
3877      file name and line number information in additional arguments
3878      (a const char* and an int).  The basic functionality remains, as
3879      well as the original possibility to just replace malloc(),
3880      realloc() and free() by functions that do not know about these
3881      additional arguments.  To register and find out the current
3882      settings for extended allocation functions, the following
3883      functions are provided:
3884
3885         CRYPTO_set_mem_ex_functions
3886         CRYPTO_set_locked_mem_ex_functions
3887         CRYPTO_get_mem_ex_functions
3888         CRYPTO_get_locked_mem_ex_functions
3889
3890      These work the same way as CRYPTO_set_mem_functions and friends.
3891      CRYPTO_get_[locked_]mem_functions now writes 0 where such an
3892      extended allocation function is enabled.
3893      Similarly, CRYPTO_get_[locked_]mem_ex_functions writes 0 where
3894      a conventional allocation function is enabled.
3895      [Richard Levitte, Bodo Moeller]
3896
3897   *) Finish off removing the remaining LHASH function pointer casts.
3898      There should no longer be any prototype-casting required when using
3899      the LHASH abstraction, and any casts that remain are "bugs". See
3900      the callback types and macros at the head of lhash.h for details
3901      (and "OBJ_cleanup" in crypto/objects/obj_dat.c as an example).
3902      [Geoff Thorpe]
3903
3904   *) Add automatic query of EGD sockets in RAND_poll() for the unix variant.
3905      If /dev/[u]random devices are not available or do not return enough
3906      entropy, EGD style sockets (served by EGD or PRNGD) will automatically
3907      be queried.
3908      The locations /var/run/egd-pool, /dev/egd-pool, /etc/egd-pool, and
3909      /etc/entropy will be queried once each in this sequence, quering stops
3910      when enough entropy was collected without querying more sockets.
3911      [Lutz Jaenicke]
3912
3913   *) Change the Unix RAND_poll() variant to be able to poll several
3914      random devices, as specified by DEVRANDOM, until a sufficient amount
3915      of data has been collected.   We spend at most 10 ms on each file
3916      (select timeout) and read in non-blocking mode.  DEVRANDOM now
3917      defaults to the list "/dev/urandom", "/dev/random", "/dev/srandom"
3918      (previously it was just the string "/dev/urandom"), so on typical
3919      platforms the 10 ms delay will never occur.
3920      Also separate out the Unix variant to its own file, rand_unix.c.
3921      For VMS, there's a currently-empty rand_vms.c.
3922      [Richard Levitte]
3923
3924   *) Move OCSP client related routines to ocsp_cl.c. These
3925      provide utility functions which an application needing
3926      to issue a request to an OCSP responder and analyse the
3927      response will typically need: as opposed to those which an
3928      OCSP responder itself would need which will be added later.
3929
3930      OCSP_request_sign() signs an OCSP request with an API similar
3931      to PKCS7_sign(). OCSP_response_status() returns status of OCSP
3932      response. OCSP_response_get1_basic() extracts basic response
3933      from response. OCSP_resp_find_status(): finds and extracts status
3934      information from an OCSP_CERTID structure (which will be created
3935      when the request structure is built). These are built from lower
3936      level functions which work on OCSP_SINGLERESP structures but
3937      wont normally be used unless the application wishes to examine
3938      extensions in the OCSP response for example.
3939
3940      Replace nonce routines with a pair of functions.
3941      OCSP_request_add1_nonce() adds a nonce value and optionally
3942      generates a random value. OCSP_check_nonce() checks the
3943      validity of the nonce in an OCSP response.
3944      [Steve Henson]
3945
3946   *) Change function OCSP_request_add() to OCSP_request_add0_id().
3947      This doesn't copy the supplied OCSP_CERTID and avoids the
3948      need to free up the newly created id. Change return type
3949      to OCSP_ONEREQ to return the internal OCSP_ONEREQ structure.
3950      This can then be used to add extensions to the request.
3951      Deleted OCSP_request_new(), since most of its functionality
3952      is now in OCSP_REQUEST_new() (and the case insensitive name
3953      clash) apart from the ability to set the request name which
3954      will be added elsewhere.
3955      [Steve Henson]
3956
3957   *) Update OCSP API. Remove obsolete extensions argument from
3958      various functions. Extensions are now handled using the new
3959      OCSP extension code. New simple OCSP HTTP function which 
3960      can be used to send requests and parse the response.
3961      [Steve Henson]
3962
3963   *) Fix the PKCS#7 (S/MIME) code to work with new ASN1. Two new
3964      ASN1_ITEM structures help with sign and verify. PKCS7_ATTR_SIGN
3965      uses the special reorder version of SET OF to sort the attributes
3966      and reorder them to match the encoded order. This resolves a long
3967      standing problem: a verify on a PKCS7 structure just after signing
3968      it used to fail because the attribute order did not match the
3969      encoded order. PKCS7_ATTR_VERIFY does not reorder the attributes:
3970      it uses the received order. This is necessary to tolerate some broken
3971      software that does not order SET OF. This is handled by encoding
3972      as a SEQUENCE OF but using implicit tagging (with UNIVERSAL class)
3973      to produce the required SET OF.
3974      [Steve Henson]
3975
3976   *) Have mk1mf.pl generate the macros OPENSSL_BUILD_SHLIBCRYPTO and
3977      OPENSSL_BUILD_SHLIBSSL and use them appropriately in the header
3978      files to get correct declarations of the ASN.1 item variables.
3979      [Richard Levitte]
3980
3981   *) Rewrite of PKCS#12 code to use new ASN1 functionality. Replace many
3982      PKCS#12 macros with real functions. Fix two unrelated ASN1 bugs:
3983      asn1_check_tlen() would sometimes attempt to use 'ctx' when it was
3984      NULL and ASN1_TYPE was not dereferenced properly in asn1_ex_c2i().
3985      New ASN1 macro: DECLARE_ASN1_ITEM() which just declares the relevant
3986      ASN1_ITEM and no wrapper functions.
3987      [Steve Henson]
3988
3989   *) New functions or ASN1_item_d2i_fp() and ASN1_item_d2i_bio(). These
3990      replace the old function pointer based I/O routines. Change most of
3991      the *_d2i_bio() and *_d2i_fp() functions to use these.
3992      [Steve Henson]
3993
3994   *) Enhance mkdef.pl to be more accepting about spacing in C preprocessor
3995      lines, recognice more "algorithms" that can be deselected, and make
3996      it complain about algorithm deselection that isn't recognised.
3997      [Richard Levitte]
3998
3999   *) New ASN1 functions to handle dup, sign, verify, digest, pack and
4000      unpack operations in terms of ASN1_ITEM. Modify existing wrappers
4001      to use new functions. Add NO_ASN1_OLD which can be set to remove
4002      some old style ASN1 functions: this can be used to determine if old
4003      code will still work when these eventually go away.
4004      [Steve Henson]
4005
4006   *) New extension functions for OCSP structures, these follow the
4007      same conventions as certificates and CRLs.
4008      [Steve Henson]
4009
4010   *) New function X509V3_add1_i2d(). This automatically encodes and
4011      adds an extension. Its behaviour can be customised with various
4012      flags to append, replace or delete. Various wrappers added for
4013      certifcates and CRLs.
4014      [Steve Henson]
4015
4016   *) Fix to avoid calling the underlying ASN1 print routine when
4017      an extension cannot be parsed. Correct a typo in the
4018      OCSP_SERVICELOC extension. Tidy up print OCSP format.
4019      [Steve Henson]
4020
4021   *) Make mkdef.pl parse some of the ASN1 macros and add apropriate
4022      entries for variables.
4023      [Steve Henson]
4024
4025   *) Add functionality to apps/openssl.c for detecting locking
4026      problems: As the program is single-threaded, all we have
4027      to do is register a locking callback using an array for
4028      storing which locks are currently held by the program.
4029      [Bodo Moeller]
4030
4031   *) Use a lock around the call to CRYPTO_get_ex_new_index() in
4032      SSL_get_ex_data_X509_STORE_idx(), which is used in
4033      ssl_verify_cert_chain() and thus can be called at any time
4034      during TLS/SSL handshakes so that thread-safety is essential.
4035      Unfortunately, the ex_data design is not at all suited
4036      for multi-threaded use, so it probably should be abolished.
4037      [Bodo Moeller]
4038
4039   *) Added Broadcom "ubsec" ENGINE to OpenSSL.
4040      [Broadcom, tweaked and integrated by Geoff Thorpe]
4041
4042   *) Move common extension printing code to new function
4043      X509V3_print_extensions(). Reorganise OCSP print routines and
4044      implement some needed OCSP ASN1 functions. Add OCSP extensions.
4045      [Steve Henson]
4046
4047   *) New function X509_signature_print() to remove duplication in some
4048      print routines.
4049      [Steve Henson]
4050
4051   *) Add a special meaning when SET OF and SEQUENCE OF flags are both
4052      set (this was treated exactly the same as SET OF previously). This
4053      is used to reorder the STACK representing the structure to match the
4054      encoding. This will be used to get round a problem where a PKCS7
4055      structure which was signed could not be verified because the STACK
4056      order did not reflect the encoded order.
4057      [Steve Henson]
4058
4059   *) Reimplement the OCSP ASN1 module using the new code.
4060      [Steve Henson]
4061
4062   *) Update the X509V3 code to permit the use of an ASN1_ITEM structure
4063      for its ASN1 operations. The old style function pointers still exist
4064      for now but they will eventually go away.
4065      [Steve Henson]
4066
4067   *) Merge in replacement ASN1 code from the ASN1 branch. This almost
4068      completely replaces the old ASN1 functionality with a table driven
4069      encoder and decoder which interprets an ASN1_ITEM structure describing
4070      the ASN1 module. Compatibility with the existing ASN1 API (i2d,d2i) is
4071      largely maintained. Almost all of the old asn1_mac.h macro based ASN1
4072      has also been converted to the new form.
4073      [Steve Henson]
4074
4075   *) Change BN_mod_exp_recp so that negative moduli are tolerated
4076      (the sign is ignored).  Similarly, ignore the sign in BN_MONT_CTX_set
4077      so that BN_mod_exp_mont and BN_mod_exp_mont_word work
4078      for negative moduli.
4079      [Bodo Moeller]
4080
4081   *) Fix BN_uadd and BN_usub: Always return non-negative results instead
4082      of not touching the result's sign bit.
4083      [Bodo Moeller]
4084
4085   *) BN_div bugfix: If the result is 0, the sign (res->neg) must not be
4086      set.
4087      [Bodo Moeller]
4088
4089   *) Changed the LHASH code to use prototypes for callbacks, and created
4090      macros to declare and implement thin (optionally static) functions
4091      that provide type-safety and avoid function pointer casting for the
4092      type-specific callbacks.
4093      [Geoff Thorpe]
4094
4095   *) Added Kerberos Cipher Suites to be used with TLS, as written in
4096      RFC 2712.
4097      [Veers Staats <staatsvr@asc.hpc.mil>,
4098       Jeffrey Altman <jaltman@columbia.edu>, via Richard Levitte]
4099
4100   *) Reformat the FAQ so the different questions and answers can be divided
4101      in sections depending on the subject.
4102      [Richard Levitte]
4103
4104   *) Have the zlib compression code load ZLIB.DLL dynamically under
4105      Windows.
4106      [Richard Levitte]
4107
4108   *) New function BN_mod_sqrt for computing square roots modulo a prime
4109      (using the probabilistic Tonelli-Shanks algorithm unless
4110      p == 3 (mod 4)  or  p == 5 (mod 8),  which are cases that can
4111      be handled deterministically).
4112      [Lenka Fibikova <fibikova@exp-math.uni-essen.de>, Bodo Moeller]
4113
4114   *) Make BN_mod_inverse faster by explicitly handling small quotients
4115      in the Euclid loop. (Speed gain about 20% for small moduli [256 or
4116      512 bits], about 30% for larger ones [1024 or 2048 bits].)
4117      [Bodo Moeller]
4118
4119   *) New function BN_kronecker.
4120      [Bodo Moeller]
4121
4122   *) Fix BN_gcd so that it works on negative inputs; the result is
4123      positive unless both parameters are zero.
4124      Previously something reasonably close to an infinite loop was
4125      possible because numbers could be growing instead of shrinking
4126      in the implementation of Euclid's algorithm.
4127      [Bodo Moeller]
4128
4129   *) Fix BN_is_word() and BN_is_one() macros to take into account the
4130      sign of the number in question.
4131
4132      Fix BN_is_word(a,w) to work correctly for w == 0.
4133
4134      The old BN_is_word(a,w) macro is now called BN_abs_is_word(a,w)
4135      because its test if the absolute value of 'a' equals 'w'.
4136      Note that BN_abs_is_word does *not* handle w == 0 reliably;
4137      it exists mostly for use in the implementations of BN_is_zero(),
4138      BN_is_one(), and BN_is_word().
4139      [Bodo Moeller]
4140
4141   *) New function BN_swap.
4142      [Bodo Moeller]
4143
4144   *) Use BN_nnmod instead of BN_mod in crypto/bn/bn_exp.c so that
4145      the exponentiation functions are more likely to produce reasonable
4146      results on negative inputs.
4147      [Bodo Moeller]
4148
4149   *) Change BN_mod_mul so that the result is always non-negative.
4150      Previously, it could be negative if one of the factors was negative;
4151      I don't think anyone really wanted that behaviour.
4152      [Bodo Moeller]
4153
4154   *) Move BN_mod_... functions into new file crypto/bn/bn_mod.c
4155      (except for exponentiation, which stays in crypto/bn/bn_exp.c,
4156      and BN_mod_mul_reciprocal, which stays in crypto/bn/bn_recp.c)
4157      and add new functions:
4158
4159           BN_nnmod
4160           BN_mod_sqr
4161           BN_mod_add
4162           BN_mod_add_quick
4163           BN_mod_sub
4164           BN_mod_sub_quick
4165           BN_mod_lshift1
4166           BN_mod_lshift1_quick
4167           BN_mod_lshift
4168           BN_mod_lshift_quick
4169
4170      These functions always generate non-negative results.
4171
4172      BN_nnmod otherwise is like BN_mod (if BN_mod computes a remainder  r
4173      such that  |m| < r < 0,  BN_nnmod will output  rem + |m|  instead).
4174
4175      BN_mod_XXX_quick(r, a, [b,] m) generates the same result as
4176      BN_mod_XXX(r, a, [b,] m, ctx), but requires that  a  [and  b]
4177      be reduced modulo  m.
4178      [Lenka Fibikova <fibikova@exp-math.uni-essen.de>, Bodo Moeller]
4179
4180 #if 0
4181      The following entry accidentily appeared in the CHANGES file
4182      distributed with OpenSSL 0.9.7.  The modifications described in
4183      it do *not* apply to OpenSSL 0.9.7.
4184
4185   *) Remove a few calls to bn_wexpand() in BN_sqr() (the one in there
4186      was actually never needed) and in BN_mul().  The removal in BN_mul()
4187      required a small change in bn_mul_part_recursive() and the addition
4188      of the functions bn_cmp_part_words(), bn_sub_part_words() and
4189      bn_add_part_words(), which do the same thing as bn_cmp_words(),
4190      bn_sub_words() and bn_add_words() except they take arrays with
4191      differing sizes.
4192      [Richard Levitte]
4193 #endif
4194
4195   *) In 'openssl passwd', verify passwords read from the terminal
4196      unless the '-salt' option is used (which usually means that
4197      verification would just waste user's time since the resulting
4198      hash is going to be compared with some given password hash)
4199      or the new '-noverify' option is used.
4200
4201      This is an incompatible change, but it does not affect
4202      non-interactive use of 'openssl passwd' (passwords on the command
4203      line, '-stdin' option, '-in ...' option) and thus should not
4204      cause any problems.
4205      [Bodo Moeller]
4206
4207   *) Remove all references to RSAref, since there's no more need for it.
4208      [Richard Levitte]
4209
4210   *) Make DSO load along a path given through an environment variable
4211      (SHLIB_PATH) with shl_load().
4212      [Richard Levitte]
4213
4214   *) Constify the ENGINE code as a result of BIGNUM constification.
4215      Also constify the RSA code and most things related to it.  In a
4216      few places, most notable in the depth of the ASN.1 code, ugly
4217      casts back to non-const were required (to be solved at a later
4218      time)
4219      [Richard Levitte]
4220
4221   *) Make it so the openssl application has all engines loaded by default.
4222      [Richard Levitte]
4223
4224   *) Constify the BIGNUM routines a little more.
4225      [Richard Levitte]
4226
4227   *) Add the following functions:
4228
4229         ENGINE_load_cswift()
4230         ENGINE_load_chil()
4231         ENGINE_load_atalla()
4232         ENGINE_load_nuron()
4233         ENGINE_load_builtin_engines()
4234
4235      That way, an application can itself choose if external engines that
4236      are built-in in OpenSSL shall ever be used or not.  The benefit is
4237      that applications won't have to be linked with libdl or other dso
4238      libraries unless it's really needed.
4239
4240      Changed 'openssl engine' to load all engines on demand.
4241      Changed the engine header files to avoid the duplication of some
4242      declarations (they differed!).
4243      [Richard Levitte]
4244
4245   *) 'openssl engine' can now list capabilities.
4246      [Richard Levitte]
4247
4248   *) Better error reporting in 'openssl engine'.
4249      [Richard Levitte]
4250
4251   *) Never call load_dh_param(NULL) in s_server.
4252      [Bodo Moeller]
4253
4254   *) Add engine application.  It can currently list engines by name and
4255      identity, and test if they are actually available.
4256      [Richard Levitte]
4257
4258   *) Improve RPM specification file by forcing symbolic linking and making
4259      sure the installed documentation is also owned by root.root.
4260      [Damien Miller <djm@mindrot.org>]
4261
4262   *) Give the OpenSSL applications more possibilities to make use of
4263      keys (public as well as private) handled by engines.
4264      [Richard Levitte]
4265
4266   *) Add OCSP code that comes from CertCo.
4267      [Richard Levitte]
4268
4269   *) Add VMS support for the Rijndael code.
4270      [Richard Levitte]
4271
4272   *) Added untested support for Nuron crypto accelerator.
4273      [Ben Laurie]
4274
4275   *) Add support for external cryptographic devices.  This code was
4276      previously distributed separately as the "engine" branch.
4277      [Geoff Thorpe, Richard Levitte]
4278
4279   *) Rework the filename-translation in the DSO code. It is now possible to
4280      have far greater control over how a "name" is turned into a filename
4281      depending on the operating environment and any oddities about the
4282      different shared library filenames on each system.
4283      [Geoff Thorpe]
4284
4285   *) Support threads on FreeBSD-elf in Configure.
4286      [Richard Levitte]
4287
4288   *) Fix for SHA1 assembly problem with MASM: it produces
4289      warnings about corrupt line number information when assembling
4290      with debugging information. This is caused by the overlapping
4291      of two sections.
4292      [Bernd Matthes <mainbug@celocom.de>, Steve Henson]
4293
4294   *) NCONF changes.
4295      NCONF_get_number() has no error checking at all.  As a replacement,
4296      NCONF_get_number_e() is defined (_e for "error checking") and is
4297      promoted strongly.  The old NCONF_get_number is kept around for
4298      binary backward compatibility.
4299      Make it possible for methods to load from something other than a BIO,
4300      by providing a function pointer that is given a name instead of a BIO.
4301      For example, this could be used to load configuration data from an
4302      LDAP server.
4303      [Richard Levitte]
4304
4305   *) Fix for non blocking accept BIOs. Added new I/O special reason
4306      BIO_RR_ACCEPT to cover this case. Previously use of accept BIOs
4307      with non blocking I/O was not possible because no retry code was
4308      implemented. Also added new SSL code SSL_WANT_ACCEPT to cover
4309      this case.
4310      [Steve Henson]
4311
4312   *) Added the beginnings of Rijndael support.
4313      [Ben Laurie]
4314
4315   *) Fix for bug in DirectoryString mask setting. Add support for
4316      X509_NAME_print_ex() in 'req' and X509_print_ex() function
4317      to allow certificate printing to more controllable, additional
4318      'certopt' option to 'x509' to allow new printing options to be
4319      set.
4320      [Steve Henson]
4321
4322   *) Clean old EAY MD5 hack from e_os.h.
4323      [Richard Levitte]
4324
4325  Changes between 0.9.6l and 0.9.6m  [17 Mar 2004]
4326
4327   *) Fix null-pointer assignment in do_change_cipher_spec() revealed
4328      by using the Codenomicon TLS Test Tool (CVE-2004-0079)
4329      [Joe Orton, Steve Henson]
4330
4331  Changes between 0.9.6k and 0.9.6l  [04 Nov 2003]
4332
4333   *) Fix additional bug revealed by the NISCC test suite:
4334
4335      Stop bug triggering large recursion when presented with
4336      certain ASN.1 tags (CVE-2003-0851)
4337      [Steve Henson]
4338
4339  Changes between 0.9.6j and 0.9.6k  [30 Sep 2003]
4340
4341   *) Fix various bugs revealed by running the NISCC test suite:
4342
4343      Stop out of bounds reads in the ASN1 code when presented with
4344      invalid tags (CVE-2003-0543 and CVE-2003-0544).
4345      
4346      If verify callback ignores invalid public key errors don't try to check
4347      certificate signature with the NULL public key.
4348
4349      [Steve Henson]
4350
4351   *) In ssl3_accept() (ssl/s3_srvr.c) only accept a client certificate
4352      if the server requested one: as stated in TLS 1.0 and SSL 3.0
4353      specifications.
4354      [Steve Henson]
4355
4356   *) In ssl3_get_client_hello() (ssl/s3_srvr.c), tolerate additional
4357      extra data after the compression methods not only for TLS 1.0
4358      but also for SSL 3.0 (as required by the specification).
4359      [Bodo Moeller; problem pointed out by Matthias Loepfe]
4360
4361   *) Change X509_certificate_type() to mark the key as exported/exportable
4362      when it's 512 *bits* long, not 512 bytes.
4363      [Richard Levitte]
4364
4365  Changes between 0.9.6i and 0.9.6j  [10 Apr 2003]
4366
4367   *) Countermeasure against the Klima-Pokorny-Rosa extension of
4368      Bleichbacher's attack on PKCS #1 v1.5 padding: treat
4369      a protocol version number mismatch like a decryption error
4370      in ssl3_get_client_key_exchange (ssl/s3_srvr.c).
4371      [Bodo Moeller]
4372
4373   *) Turn on RSA blinding by default in the default implementation
4374      to avoid a timing attack. Applications that don't want it can call
4375      RSA_blinding_off() or use the new flag RSA_FLAG_NO_BLINDING.
4376      They would be ill-advised to do so in most cases.
4377      [Ben Laurie, Steve Henson, Geoff Thorpe, Bodo Moeller]
4378
4379   *) Change RSA blinding code so that it works when the PRNG is not
4380      seeded (in this case, the secret RSA exponent is abused as
4381      an unpredictable seed -- if it is not unpredictable, there
4382      is no point in blinding anyway).  Make RSA blinding thread-safe
4383      by remembering the creator's thread ID in rsa->blinding and
4384      having all other threads use local one-time blinding factors
4385      (this requires more computation than sharing rsa->blinding, but
4386      avoids excessive locking; and if an RSA object is not shared
4387      between threads, blinding will still be very fast).
4388      [Bodo Moeller]
4389
4390  Changes between 0.9.6h and 0.9.6i  [19 Feb 2003]
4391
4392   *) In ssl3_get_record (ssl/s3_pkt.c), minimize information leaked
4393      via timing by performing a MAC computation even if incorrrect
4394      block cipher padding has been found.  This is a countermeasure
4395      against active attacks where the attacker has to distinguish
4396      between bad padding and a MAC verification error. (CVE-2003-0078)
4397
4398      [Bodo Moeller; problem pointed out by Brice Canvel (EPFL),
4399      Alain Hiltgen (UBS), Serge Vaudenay (EPFL), and
4400      Martin Vuagnoux (EPFL, Ilion)]
4401
4402  Changes between 0.9.6g and 0.9.6h  [5 Dec 2002]
4403
4404   *) New function OPENSSL_cleanse(), which is used to cleanse a section of
4405      memory from it's contents.  This is done with a counter that will
4406      place alternating values in each byte.  This can be used to solve
4407      two issues: 1) the removal of calls to memset() by highly optimizing
4408      compilers, and 2) cleansing with other values than 0, since those can
4409      be read through on certain media, for example a swap space on disk.
4410      [Geoff Thorpe]
4411
4412   *) Bugfix: client side session caching did not work with external caching,
4413      because the session->cipher setting was not restored when reloading
4414      from the external cache. This problem was masked, when
4415      SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG (part of SSL_OP_ALL) was set.
4416      (Found by Steve Haslam <steve@araqnid.ddts.net>.)
4417      [Lutz Jaenicke]
4418
4419   *) Fix client_certificate (ssl/s2_clnt.c): The permissible total
4420      length of the REQUEST-CERTIFICATE message is 18 .. 34, not 17 .. 33.
4421      [Zeev Lieber <zeev-l@yahoo.com>]
4422
4423   *) Undo an undocumented change introduced in 0.9.6e which caused
4424      repeated calls to OpenSSL_add_all_ciphers() and 
4425      OpenSSL_add_all_digests() to be ignored, even after calling
4426      EVP_cleanup().
4427      [Richard Levitte]
4428
4429   *) Change the default configuration reader to deal with last line not
4430      being properly terminated.
4431      [Richard Levitte]
4432
4433   *) Change X509_NAME_cmp() so it applies the special rules on handling
4434      DN values that are of type PrintableString, as well as RDNs of type
4435      emailAddress where the value has the type ia5String.
4436      [stefank@valicert.com via Richard Levitte]
4437
4438   *) Add a SSL_SESS_CACHE_NO_INTERNAL_STORE flag to take over half
4439      the job SSL_SESS_CACHE_NO_INTERNAL_LOOKUP was inconsistently
4440      doing, define a new flag (SSL_SESS_CACHE_NO_INTERNAL) to be
4441      the bitwise-OR of the two for use by the majority of applications
4442      wanting this behaviour, and update the docs. The documented
4443      behaviour and actual behaviour were inconsistent and had been
4444      changing anyway, so this is more a bug-fix than a behavioural
4445      change.
4446      [Geoff Thorpe, diagnosed by Nadav Har'El]
4447
4448   *) Don't impose a 16-byte length minimum on session IDs in ssl/s3_clnt.c
4449      (the SSL 3.0 and TLS 1.0 specifications allow any length up to 32 bytes).
4450      [Bodo Moeller]
4451
4452   *) Fix initialization code race conditions in
4453         SSLv23_method(),  SSLv23_client_method(),   SSLv23_server_method(),
4454         SSLv2_method(),   SSLv2_client_method(),    SSLv2_server_method(),
4455         SSLv3_method(),   SSLv3_client_method(),    SSLv3_server_method(),
4456         TLSv1_method(),   TLSv1_client_method(),    TLSv1_server_method(),
4457         ssl2_get_cipher_by_char(),
4458         ssl3_get_cipher_by_char().
4459      [Patrick McCormick <patrick@tellme.com>, Bodo Moeller]
4460
4461   *) Reorder cleanup sequence in SSL_CTX_free(): only remove the ex_data after
4462      the cached sessions are flushed, as the remove_cb() might use ex_data
4463      contents. Bug found by Sam Varshavchik <mrsam@courier-mta.com>
4464      (see [openssl.org #212]).
4465      [Geoff Thorpe, Lutz Jaenicke]
4466
4467   *) Fix typo in OBJ_txt2obj which incorrectly passed the content
4468      length, instead of the encoding length to d2i_ASN1_OBJECT.
4469      [Steve Henson]
4470
4471  Changes between 0.9.6f and 0.9.6g  [9 Aug 2002]
4472
4473   *) [In 0.9.6g-engine release:]
4474      Fix crypto/engine/vendor_defns/cswift.h for WIN32 (use '_stdcall').
4475      [Lynn Gazis <lgazis@rainbow.com>]
4476
4477  Changes between 0.9.6e and 0.9.6f  [8 Aug 2002]
4478
4479   *) Fix ASN1 checks. Check for overflow by comparing with LONG_MAX
4480      and get fix the header length calculation.
4481      [Florian Weimer <Weimer@CERT.Uni-Stuttgart.DE>,
4482         Alon Kantor <alonk@checkpoint.com> (and others),
4483         Steve Henson]
4484
4485   *) Use proper error handling instead of 'assertions' in buffer
4486      overflow checks added in 0.9.6e.  This prevents DoS (the
4487      assertions could call abort()).
4488      [Arne Ansper <arne@ats.cyber.ee>, Bodo Moeller]
4489
4490  Changes between 0.9.6d and 0.9.6e  [30 Jul 2002]
4491
4492   *) Add various sanity checks to asn1_get_length() to reject
4493      the ASN1 length bytes if they exceed sizeof(long), will appear
4494      negative or the content length exceeds the length of the
4495      supplied buffer.
4496      [Steve Henson, Adi Stav <stav@mercury.co.il>, James Yonan <jim@ntlp.com>]
4497
4498   *) Fix cipher selection routines: ciphers without encryption had no flags
4499      for the cipher strength set and where therefore not handled correctly
4500      by the selection routines (PR #130).
4501      [Lutz Jaenicke]
4502
4503   *) Fix EVP_dsa_sha macro.
4504      [Nils Larsch]
4505
4506   *) New option
4507           SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS
4508      for disabling the SSL 3.0/TLS 1.0 CBC vulnerability countermeasure
4509      that was added in OpenSSL 0.9.6d.
4510
4511      As the countermeasure turned out to be incompatible with some
4512      broken SSL implementations, the new option is part of SSL_OP_ALL.
4513      SSL_OP_ALL is usually employed when compatibility with weird SSL
4514      implementations is desired (e.g. '-bugs' option to 's_client' and
4515      's_server'), so the new option is automatically set in many
4516      applications.
4517      [Bodo Moeller]
4518
4519   *) Changes in security patch:
4520
4521      Changes marked "(CHATS)" were sponsored by the Defense Advanced
4522      Research Projects Agency (DARPA) and Air Force Research Laboratory,
4523      Air Force Materiel Command, USAF, under agreement number
4524      F30602-01-2-0537.
4525
4526   *) Add various sanity checks to asn1_get_length() to reject
4527      the ASN1 length bytes if they exceed sizeof(long), will appear
4528      negative or the content length exceeds the length of the
4529      supplied buffer. (CVE-2002-0659)
4530      [Steve Henson, Adi Stav <stav@mercury.co.il>, James Yonan <jim@ntlp.com>]
4531
4532   *) Assertions for various potential buffer overflows, not known to
4533      happen in practice.
4534      [Ben Laurie (CHATS)]
4535
4536   *) Various temporary buffers to hold ASCII versions of integers were
4537      too small for 64 bit platforms. (CVE-2002-0655)
4538      [Matthew Byng-Maddick <mbm@aldigital.co.uk> and Ben Laurie (CHATS)>
4539
4540   *) Remote buffer overflow in SSL3 protocol - an attacker could
4541      supply an oversized session ID to a client. (CVE-2002-0656)
4542      [Ben Laurie (CHATS)]
4543
4544   *) Remote buffer overflow in SSL2 protocol - an attacker could
4545      supply an oversized client master key. (CVE-2002-0656)
4546      [Ben Laurie (CHATS)]
4547
4548  Changes between 0.9.6c and 0.9.6d  [9 May 2002]
4549
4550   *) Fix crypto/asn1/a_sign.c so that 'parameters' is omitted (not
4551      encoded as NULL) with id-dsa-with-sha1.
4552      [Nils Larsch <nla@trustcenter.de>; problem pointed out by Bodo Moeller]
4553
4554   *) Check various X509_...() return values in apps/req.c.
4555      [Nils Larsch <nla@trustcenter.de>]
4556
4557   *) Fix BASE64 decode (EVP_DecodeUpdate) for data with CR/LF ended lines:
4558      an end-of-file condition would erronously be flagged, when the CRLF
4559      was just at the end of a processed block. The bug was discovered when
4560      processing data through a buffering memory BIO handing the data to a
4561      BASE64-decoding BIO. Bug fund and patch submitted by Pavel Tsekov
4562      <ptsekov@syntrex.com> and Nedelcho Stanev.
4563      [Lutz Jaenicke]
4564
4565   *) Implement a countermeasure against a vulnerability recently found
4566      in CBC ciphersuites in SSL 3.0/TLS 1.0: Send an empty fragment
4567      before application data chunks to avoid the use of known IVs
4568      with data potentially chosen by the attacker.
4569      [Bodo Moeller]
4570
4571   *) Fix length checks in ssl3_get_client_hello().
4572      [Bodo Moeller]
4573
4574   *) TLS/SSL library bugfix: use s->s3->in_read_app_data differently
4575      to prevent ssl3_read_internal() from incorrectly assuming that
4576      ssl3_read_bytes() found application data while handshake
4577      processing was enabled when in fact s->s3->in_read_app_data was
4578      merely automatically cleared during the initial handshake.
4579      [Bodo Moeller; problem pointed out by Arne Ansper <arne@ats.cyber.ee>]
4580
4581   *) Fix object definitions for Private and Enterprise: they were not
4582      recognized in their shortname (=lowercase) representation. Extend
4583      obj_dat.pl to issue an error when using undefined keywords instead
4584      of silently ignoring the problem (Svenning Sorensen
4585      <sss@sss.dnsalias.net>).
4586      [Lutz Jaenicke]
4587
4588   *) Fix DH_generate_parameters() so that it works for 'non-standard'
4589      generators, i.e. generators other than 2 and 5.  (Previously, the
4590      code did not properly initialise the 'add' and 'rem' values to
4591      BN_generate_prime().)
4592
4593      In the new general case, we do not insist that 'generator' is
4594      actually a primitive root: This requirement is rather pointless;
4595      a generator of the order-q subgroup is just as good, if not
4596      better.
4597      [Bodo Moeller]
4598  
4599   *) Map new X509 verification errors to alerts. Discovered and submitted by
4600      Tom Wu <tom@arcot.com>.
4601      [Lutz Jaenicke]
4602
4603   *) Fix ssl3_pending() (ssl/s3_lib.c) to prevent SSL_pending() from
4604      returning non-zero before the data has been completely received
4605      when using non-blocking I/O.
4606      [Bodo Moeller; problem pointed out by John Hughes]
4607
4608   *) Some of the ciphers missed the strength entry (SSL_LOW etc).
4609      [Ben Laurie, Lutz Jaenicke]
4610
4611   *) Fix bug in SSL_clear(): bad sessions were not removed (found by
4612      Yoram Zahavi <YoramZ@gilian.com>).
4613      [Lutz Jaenicke]
4614
4615   *) Add information about CygWin 1.3 and on, and preserve proper
4616      configuration for the versions before that.
4617      [Corinna Vinschen <vinschen@redhat.com> and Richard Levitte]
4618
4619   *) Make removal from session cache (SSL_CTX_remove_session()) more robust:
4620      check whether we deal with a copy of a session and do not delete from
4621      the cache in this case. Problem reported by "Izhar Shoshani Levi"
4622      <izhar@checkpoint.com>.
4623      [Lutz Jaenicke]
4624
4625   *) Do not store session data into the internal session cache, if it
4626      is never intended to be looked up (SSL_SESS_CACHE_NO_INTERNAL_LOOKUP
4627      flag is set). Proposed by Aslam <aslam@funk.com>.
4628      [Lutz Jaenicke]
4629
4630   *) Have ASN1_BIT_STRING_set_bit() really clear a bit when the requested
4631      value is 0.
4632      [Richard Levitte]
4633
4634   *) [In 0.9.6d-engine release:]
4635      Fix a crashbug and a logic bug in hwcrhk_load_pubkey().
4636      [Toomas Kiisk <vix@cyber.ee> via Richard Levitte]
4637
4638   *) Add the configuration target linux-s390x.
4639      [Neale Ferguson <Neale.Ferguson@SoftwareAG-USA.com> via Richard Levitte]
4640
4641   *) The earlier bugfix for the SSL3_ST_SW_HELLO_REQ_C case of
4642      ssl3_accept (ssl/s3_srvr.c) incorrectly used a local flag
4643      variable as an indication that a ClientHello message has been
4644      received.  As the flag value will be lost between multiple
4645      invocations of ssl3_accept when using non-blocking I/O, the
4646      function may not be aware that a handshake has actually taken
4647      place, thus preventing a new session from being added to the
4648      session cache.
4649
4650      To avoid this problem, we now set s->new_session to 2 instead of
4651      using a local variable.
4652      [Lutz Jaenicke, Bodo Moeller]
4653
4654   *) Bugfix: Return -1 from ssl3_get_server_done (ssl3/s3_clnt.c)
4655      if the SSL_R_LENGTH_MISMATCH error is detected.
4656      [Geoff Thorpe, Bodo Moeller]
4657
4658   *) New 'shared_ldflag' column in Configure platform table.
4659      [Richard Levitte]
4660
4661   *) Fix EVP_CIPHER_mode macro.
4662      ["Dan S. Camper" <dan@bti.net>]
4663
4664   *) Fix ssl3_read_bytes (ssl/s3_pkt.c): To ignore messages of unknown
4665      type, we must throw them away by setting rr->length to 0.
4666      [D P Chang <dpc@qualys.com>]
4667
4668  Changes between 0.9.6b and 0.9.6c  [21 dec 2001]
4669
4670   *) Fix BN_rand_range bug pointed out by Dominikus Scherkl
4671      <Dominikus.Scherkl@biodata.com>.  (The previous implementation
4672      worked incorrectly for those cases where  range = 10..._2  and
4673      3*range  is two bits longer than  range.)
4674      [Bodo Moeller]
4675
4676   *) Only add signing time to PKCS7 structures if it is not already
4677      present.
4678      [Steve Henson]
4679
4680   *) Fix crypto/objects/objects.h: "ld-ce" should be "id-ce",
4681      OBJ_ld_ce should be OBJ_id_ce.
4682      Also some ip-pda OIDs in crypto/objects/objects.txt were
4683      incorrect (cf. RFC 3039).
4684      [Matt Cooper, Frederic Giudicelli, Bodo Moeller]
4685
4686   *) Release CRYPTO_LOCK_DYNLOCK when CRYPTO_destroy_dynlockid()
4687      returns early because it has nothing to do.
4688      [Andy Schneider <andy.schneider@bjss.co.uk>]
4689
4690   *) [In 0.9.6c-engine release:]
4691      Fix mutex callback return values in crypto/engine/hw_ncipher.c.
4692      [Andy Schneider <andy.schneider@bjss.co.uk>]
4693
4694   *) [In 0.9.6c-engine release:]
4695      Add support for Cryptographic Appliance's keyserver technology.
4696      (Use engine 'keyclient')
4697      [Cryptographic Appliances and Geoff Thorpe]
4698
4699   *) Add a configuration entry for OS/390 Unix.  The C compiler 'c89'
4700      is called via tools/c89.sh because arguments have to be
4701      rearranged (all '-L' options must appear before the first object
4702      modules).
4703      [Richard Shapiro <rshapiro@abinitio.com>]
4704
4705   *) [In 0.9.6c-engine release:]
4706      Add support for Broadcom crypto accelerator cards, backported
4707      from 0.9.7.
4708      [Broadcom, Nalin Dahyabhai <nalin@redhat.com>, Mark Cox]
4709
4710   *) [In 0.9.6c-engine release:]
4711      Add support for SureWare crypto accelerator cards from 
4712      Baltimore Technologies.  (Use engine 'sureware')
4713      [Baltimore Technologies and Mark Cox]
4714
4715   *) [In 0.9.6c-engine release:]
4716      Add support for crypto accelerator cards from Accelerated
4717      Encryption Processing, www.aep.ie.  (Use engine 'aep')
4718      [AEP Inc. and Mark Cox]
4719
4720   *) Add a configuration entry for gcc on UnixWare.
4721      [Gary Benson <gbenson@redhat.com>]
4722
4723   *) Change ssl/s2_clnt.c and ssl/s2_srvr.c so that received handshake
4724      messages are stored in a single piece (fixed-length part and
4725      variable-length part combined) and fix various bugs found on the way.
4726      [Bodo Moeller]
4727
4728   *) Disable caching in BIO_gethostbyname(), directly use gethostbyname()
4729      instead.  BIO_gethostbyname() does not know what timeouts are
4730      appropriate, so entries would stay in cache even when they have
4731      become invalid.
4732      [Bodo Moeller; problem pointed out by Rich Salz <rsalz@zolera.com>
4733
4734   *) Change ssl23_get_client_hello (ssl/s23_srvr.c) behaviour when
4735      faced with a pathologically small ClientHello fragment that does
4736      not contain client_version: Instead of aborting with an error,
4737      simply choose the highest available protocol version (i.e.,
4738      TLS 1.0 unless it is disabled).  In practice, ClientHello
4739      messages are never sent like this, but this change gives us
4740      strictly correct behaviour at least for TLS.
4741      [Bodo Moeller]
4742
4743   *) Fix SSL handshake functions and SSL_clear() such that SSL_clear()
4744      never resets s->method to s->ctx->method when called from within
4745      one of the SSL handshake functions.
4746      [Bodo Moeller; problem pointed out by Niko Baric]
4747
4748   *) In ssl3_get_client_hello (ssl/s3_srvr.c), generate a fatal alert
4749      (sent using the client's version number) if client_version is
4750      smaller than the protocol version in use.  Also change
4751      ssl23_get_client_hello (ssl/s23_srvr.c) to select TLS 1.0 if
4752      the client demanded SSL 3.0 but only TLS 1.0 is enabled; then
4753      the client will at least see that alert.
4754      [Bodo Moeller]
4755
4756   *) Fix ssl3_get_message (ssl/s3_both.c) to handle message fragmentation
4757      correctly.
4758      [Bodo Moeller]
4759
4760   *) Avoid infinite loop in ssl3_get_message (ssl/s3_both.c) if a
4761      client receives HelloRequest while in a handshake.
4762      [Bodo Moeller; bug noticed by Andy Schneider <andy.schneider@bjss.co.uk>]
4763
4764   *) Bugfix in ssl3_accept (ssl/s3_srvr.c): Case SSL3_ST_SW_HELLO_REQ_C
4765      should end in 'break', not 'goto end' which circuments various
4766      cleanups done in state SSL_ST_OK.   But session related stuff
4767      must be disabled for SSL_ST_OK in the case that we just sent a
4768      HelloRequest.
4769
4770      Also avoid some overhead by not calling ssl_init_wbio_buffer()
4771      before just sending a HelloRequest.
4772      [Bodo Moeller, Eric Rescorla <ekr@rtfm.com>]
4773
4774   *) Fix ssl/s3_enc.c, ssl/t1_enc.c and ssl/s3_pkt.c so that we don't
4775      reveal whether illegal block cipher padding was found or a MAC
4776      verification error occured.  (Neither SSLerr() codes nor alerts
4777      are directly visible to potential attackers, but the information
4778      may leak via logfiles.)
4779
4780      Similar changes are not required for the SSL 2.0 implementation
4781      because the number of padding bytes is sent in clear for SSL 2.0,
4782      and the extra bytes are just ignored.  However ssl/s2_pkt.c
4783      failed to verify that the purported number of padding bytes is in
4784      the legal range.
4785      [Bodo Moeller]
4786
4787   *) Add OpenUNIX-8 support including shared libraries
4788      (Boyd Lynn Gerber <gerberb@zenez.com>).
4789      [Lutz Jaenicke]
4790
4791   *) Improve RSA_padding_check_PKCS1_OAEP() check again to avoid
4792      'wristwatch attack' using huge encoding parameters (cf.
4793      James H. Manger's CRYPTO 2001 paper).  Note that the
4794      RSA_PKCS1_OAEP_PADDING case of RSA_private_decrypt() does not use
4795      encoding parameters and hence was not vulnerable.
4796      [Bodo Moeller]
4797
4798   *) BN_sqr() bug fix.
4799      [Ulf Möller, reported by Jim Ellis <jim.ellis@cavium.com>]
4800
4801   *) Rabin-Miller test analyses assume uniformly distributed witnesses,
4802      so use BN_pseudo_rand_range() instead of using BN_pseudo_rand()
4803      followed by modular reduction.
4804      [Bodo Moeller; pointed out by Adam Young <AYoung1@NCSUS.JNJ.COM>]
4805
4806   *) Add BN_pseudo_rand_range() with obvious functionality: BN_rand_range()
4807      equivalent based on BN_pseudo_rand() instead of BN_rand().
4808      [Bodo Moeller]
4809
4810   *) s3_srvr.c: allow sending of large client certificate lists (> 16 kB).
4811      This function was broken, as the check for a new client hello message
4812      to handle SGC did not allow these large messages.
4813      (Tracked down by "Douglas E. Engert" <deengert@anl.gov>.)
4814      [Lutz Jaenicke]
4815
4816   *) Add alert descriptions for TLSv1 to SSL_alert_desc_string[_long]().
4817      [Lutz Jaenicke]
4818
4819   *) Fix buggy behaviour of BIO_get_num_renegotiates() and BIO_ctrl()
4820      for BIO_C_GET_WRITE_BUF_SIZE ("Stephen Hinton" <shinton@netopia.com>).
4821      [Lutz Jaenicke]
4822
4823   *) Rework the configuration and shared library support for Tru64 Unix.
4824      The configuration part makes use of modern compiler features and
4825      still retains old compiler behavior for those that run older versions
4826      of the OS.  The shared library support part includes a variant that
4827      uses the RPATH feature, and is available through the special
4828      configuration target "alpha-cc-rpath", which will never be selected
4829      automatically.
4830      [Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu> via Richard Levitte]
4831
4832   *) In ssl3_get_key_exchange (ssl/s3_clnt.c), call ssl3_get_message()
4833      with the same message size as in ssl3_get_certificate_request().
4834      Otherwise, if no ServerKeyExchange message occurs, CertificateRequest
4835      messages might inadvertently be reject as too long.
4836      [Petr Lampa <lampa@fee.vutbr.cz>]
4837
4838   *) Enhanced support for IA-64 Unix platforms (well, Linux and HP-UX).
4839      [Andy Polyakov]
4840
4841   *) Modified SSL library such that the verify_callback that has been set
4842      specificly for an SSL object with SSL_set_verify() is actually being
4843      used. Before the change, a verify_callback set with this function was
4844      ignored and the verify_callback() set in the SSL_CTX at the time of
4845      the call was used. New function X509_STORE_CTX_set_verify_cb() introduced
4846      to allow the necessary settings.
4847      [Lutz Jaenicke]
4848
4849   *) Initialize static variable in crypto/dsa/dsa_lib.c and crypto/dh/dh_lib.c
4850      explicitly to NULL, as at least on Solaris 8 this seems not always to be
4851      done automatically (in contradiction to the requirements of the C
4852      standard). This made problems when used from OpenSSH.
4853      [Lutz Jaenicke]
4854
4855   *) In OpenSSL 0.9.6a and 0.9.6b, crypto/dh/dh_key.c ignored
4856      dh->length and always used
4857
4858           BN_rand_range(priv_key, dh->p).
4859
4860      BN_rand_range() is not necessary for Diffie-Hellman, and this
4861      specific range makes Diffie-Hellman unnecessarily inefficient if
4862      dh->length (recommended exponent length) is much smaller than the
4863      length of dh->p.  We could use BN_rand_range() if the order of
4864      the subgroup was stored in the DH structure, but we only have
4865      dh->length.
4866
4867      So switch back to
4868
4869           BN_rand(priv_key, l, ...)
4870
4871      where 'l' is dh->length if this is defined, or BN_num_bits(dh->p)-1
4872      otherwise.
4873      [Bodo Moeller]
4874
4875   *) In
4876
4877           RSA_eay_public_encrypt
4878           RSA_eay_private_decrypt
4879           RSA_eay_private_encrypt (signing)
4880           RSA_eay_public_decrypt (signature verification)
4881
4882      (default implementations for RSA_public_encrypt,
4883      RSA_private_decrypt, RSA_private_encrypt, RSA_public_decrypt),
4884      always reject numbers >= n.
4885      [Bodo Moeller]
4886
4887   *) In crypto/rand/md_rand.c, use a new short-time lock CRYPTO_LOCK_RAND2
4888      to synchronize access to 'locking_thread'.  This is necessary on
4889      systems where access to 'locking_thread' (an 'unsigned long'
4890      variable) is not atomic.
4891      [Bodo Moeller]
4892
4893   *) In crypto/rand/md_rand.c, set 'locking_thread' to current thread's ID
4894      *before* setting the 'crypto_lock_rand' flag.  The previous code had
4895      a race condition if 0 is a valid thread ID.
4896      [Travis Vitek <vitek@roguewave.com>]
4897
4898   *) Add support for shared libraries under Irix.
4899      [Albert Chin-A-Young <china@thewrittenword.com>]
4900
4901   *) Add configuration option to build on Linux on both big-endian and
4902      little-endian MIPS.
4903      [Ralf Baechle <ralf@uni-koblenz.de>]
4904
4905   *) Add the possibility to create shared libraries on HP-UX.
4906      [Richard Levitte]
4907
4908  Changes between 0.9.6a and 0.9.6b  [9 Jul 2001]
4909
4910   *) Change ssleay_rand_bytes (crypto/rand/md_rand.c)
4911      to avoid a SSLeay/OpenSSL PRNG weakness pointed out by
4912      Markku-Juhani O. Saarinen <markku-juhani.saarinen@nokia.com>:
4913      PRNG state recovery was possible based on the output of
4914      one PRNG request appropriately sized to gain knowledge on
4915      'md' followed by enough consecutive 1-byte PRNG requests
4916      to traverse all of 'state'.
4917
4918      1. When updating 'md_local' (the current thread's copy of 'md')
4919         during PRNG output generation, hash all of the previous
4920         'md_local' value, not just the half used for PRNG output.
4921
4922      2. Make the number of bytes from 'state' included into the hash
4923         independent from the number of PRNG bytes requested.
4924
4925      The first measure alone would be sufficient to avoid
4926      Markku-Juhani's attack.  (Actually it had never occurred
4927      to me that the half of 'md_local' used for chaining was the
4928      half from which PRNG output bytes were taken -- I had always
4929      assumed that the secret half would be used.)  The second
4930      measure makes sure that additional data from 'state' is never
4931      mixed into 'md_local' in small portions; this heuristically
4932      further strengthens the PRNG.
4933      [Bodo Moeller]
4934
4935   *) Fix crypto/bn/asm/mips3.s.
4936      [Andy Polyakov]
4937
4938   *) When only the key is given to "enc", the IV is undefined. Print out
4939      an error message in this case.
4940      [Lutz Jaenicke]
4941
4942   *) Handle special case when X509_NAME is empty in X509 printing routines.
4943      [Steve Henson]
4944
4945   *) In dsa_do_verify (crypto/dsa/dsa_ossl.c), verify that r and s are
4946      positive and less than q.
4947      [Bodo Moeller]
4948
4949   *) Don't change *pointer in CRYPTO_add_lock() is add_lock_callback is
4950      used: it isn't thread safe and the add_lock_callback should handle
4951      that itself.
4952      [Paul Rose <Paul.Rose@bridge.com>]
4953
4954   *) Verify that incoming data obeys the block size in
4955      ssl3_enc (ssl/s3_enc.c) and tls1_enc (ssl/t1_enc.c).
4956      [Bodo Moeller]
4957
4958   *) Fix OAEP check.
4959      [Ulf Möller, Bodo Möller]
4960
4961   *) The countermeasure against Bleichbacher's attack on PKCS #1 v1.5
4962      RSA encryption was accidentally removed in s3_srvr.c in OpenSSL 0.9.5
4963      when fixing the server behaviour for backwards-compatible 'client
4964      hello' messages.  (Note that the attack is impractical against
4965      SSL 3.0 and TLS 1.0 anyway because length and version checking
4966      means that the probability of guessing a valid ciphertext is
4967      around 2^-40; see section 5 in Bleichenbacher's CRYPTO '98
4968      paper.)
4969
4970      Before 0.9.5, the countermeasure (hide the error by generating a
4971      random 'decryption result') did not work properly because
4972      ERR_clear_error() was missing, meaning that SSL_get_error() would
4973      detect the supposedly ignored error.
4974
4975      Both problems are now fixed.
4976      [Bodo Moeller]
4977
4978   *) In crypto/bio/bf_buff.c, increase DEFAULT_BUFFER_SIZE to 4096
4979      (previously it was 1024).
4980      [Bodo Moeller]
4981
4982   *) Fix for compatibility mode trust settings: ignore trust settings
4983      unless some valid trust or reject settings are present.
4984      [Steve Henson]
4985
4986   *) Fix for blowfish EVP: its a variable length cipher.
4987      [Steve Henson]
4988
4989   *) Fix various bugs related to DSA S/MIME verification. Handle missing
4990      parameters in DSA public key structures and return an error in the
4991      DSA routines if parameters are absent.
4992      [Steve Henson]
4993
4994   *) In versions up to 0.9.6, RAND_file_name() resorted to file ".rnd"
4995      in the current directory if neither $RANDFILE nor $HOME was set.
4996      RAND_file_name() in 0.9.6a returned NULL in this case.  This has
4997      caused some confusion to Windows users who haven't defined $HOME.
4998      Thus RAND_file_name() is changed again: e_os.h can define a
4999      DEFAULT_HOME, which will be used if $HOME is not set.
5000      For Windows, we use "C:"; on other platforms, we still require
5001      environment variables.
5002
5003   *) Move 'if (!initialized) RAND_poll()' into regions protected by
5004      CRYPTO_LOCK_RAND.  This is not strictly necessary, but avoids
5005      having multiple threads call RAND_poll() concurrently.
5006      [Bodo Moeller]
5007
5008   *) In crypto/rand/md_rand.c, replace 'add_do_not_lock' flag by a
5009      combination of a flag and a thread ID variable.
5010      Otherwise while one thread is in ssleay_rand_bytes (which sets the
5011      flag), *other* threads can enter ssleay_add_bytes without obeying
5012      the CRYPTO_LOCK_RAND lock (and may even illegally release the lock
5013      that they do not hold after the first thread unsets add_do_not_lock).
5014      [Bodo Moeller]
5015
5016   *) Change bctest again: '-x' expressions are not available in all
5017      versions of 'test'.
5018      [Bodo Moeller]
5019
5020  Changes between 0.9.6 and 0.9.6a  [5 Apr 2001]
5021
5022   *) Fix a couple of memory leaks in PKCS7_dataDecode()
5023      [Steve Henson, reported by Heyun Zheng <hzheng@atdsprint.com>]
5024
5025   *) Change Configure and Makefiles to provide EXE_EXT, which will contain
5026      the default extension for executables, if any.  Also, make the perl
5027      scripts that use symlink() to test if it really exists and use "cp"
5028      if it doesn't.  All this made OpenSSL compilable and installable in
5029      CygWin.
5030      [Richard Levitte]
5031
5032   *) Fix for asn1_GetSequence() for indefinite length constructed data.
5033      If SEQUENCE is length is indefinite just set c->slen to the total
5034      amount of data available.
5035      [Steve Henson, reported by shige@FreeBSD.org]
5036      [This change does not apply to 0.9.7.]
5037
5038   *) Change bctest to avoid here-documents inside command substitution
5039      (workaround for FreeBSD /bin/sh bug).
5040      For compatibility with Ultrix, avoid shell functions (introduced
5041      in the bctest version that searches along $PATH).
5042      [Bodo Moeller]
5043
5044   *) Rename 'des_encrypt' to 'des_encrypt1'.  This avoids the clashes
5045      with des_encrypt() defined on some operating systems, like Solaris
5046      and UnixWare.
5047      [Richard Levitte]
5048
5049   *) Check the result of RSA-CRT (see D. Boneh, R. DeMillo, R. Lipton:
5050      On the Importance of Eliminating Errors in Cryptographic
5051      Computations, J. Cryptology 14 (2001) 2, 101-119,
5052      http://theory.stanford.edu/~dabo/papers/faults.ps.gz).
5053      [Ulf Moeller]
5054   
5055   *) MIPS assembler BIGNUM division bug fix. 
5056      [Andy Polyakov]
5057
5058   *) Disabled incorrect Alpha assembler code.
5059      [Richard Levitte]
5060
5061   *) Fix PKCS#7 decode routines so they correctly update the length
5062      after reading an EOC for the EXPLICIT tag.
5063      [Steve Henson]
5064      [This change does not apply to 0.9.7.]
5065
5066   *) Fix bug in PKCS#12 key generation routines. This was triggered
5067      if a 3DES key was generated with a 0 initial byte. Include
5068      PKCS12_BROKEN_KEYGEN compilation option to retain the old
5069      (but broken) behaviour.
5070      [Steve Henson]
5071
5072   *) Enhance bctest to search for a working bc along $PATH and print
5073      it when found.
5074      [Tim Rice <tim@multitalents.net> via Richard Levitte]
5075
5076   *) Fix memory leaks in err.c: free err_data string if necessary;
5077      don't write to the wrong index in ERR_set_error_data.
5078      [Bodo Moeller]
5079
5080   *) Implement ssl23_peek (analogous to ssl23_read), which previously
5081      did not exist.
5082      [Bodo Moeller]
5083
5084   *) Replace rdtsc with _emit statements for VC++ version 5.
5085      [Jeremy Cooper <jeremy@baymoo.org>]
5086
5087   *) Make it possible to reuse SSLv2 sessions.
5088      [Richard Levitte]
5089
5090   *) In copy_email() check for >= 0 as a return value for
5091      X509_NAME_get_index_by_NID() since 0 is a valid index.
5092      [Steve Henson reported by Massimiliano Pala <madwolf@opensca.org>]
5093
5094   *) Avoid coredump with unsupported or invalid public keys by checking if
5095      X509_get_pubkey() fails in PKCS7_verify(). Fix memory leak when
5096      PKCS7_verify() fails with non detached data.
5097      [Steve Henson]
5098
5099   *) Don't use getenv in library functions when run as setuid/setgid.
5100      New function OPENSSL_issetugid().
5101      [Ulf Moeller]
5102
5103   *) Avoid false positives in memory leak detection code (crypto/mem_dbg.c)
5104      due to incorrect handling of multi-threading:
5105
5106      1. Fix timing glitch in the MemCheck_off() portion of CRYPTO_mem_ctrl().
5107
5108      2. Fix logical glitch in is_MemCheck_on() aka CRYPTO_is_mem_check_on().
5109
5110      3. Count how many times MemCheck_off() has been called so that
5111         nested use can be treated correctly.  This also avoids 
5112         inband-signalling in the previous code (which relied on the
5113         assumption that thread ID 0 is impossible).
5114      [Bodo Moeller]
5115
5116   *) Add "-rand" option also to s_client and s_server.
5117      [Lutz Jaenicke]
5118
5119   *) Fix CPU detection on Irix 6.x.
5120      [Kurt Hockenbury <khockenb@stevens-tech.edu> and
5121       "Bruce W. Forsberg" <bruce.forsberg@baesystems.com>]
5122
5123   *) Fix X509_NAME bug which produced incorrect encoding if X509_NAME
5124      was empty.
5125      [Steve Henson]
5126      [This change does not apply to 0.9.7.]
5127
5128   *) Use the cached encoding of an X509_NAME structure rather than
5129      copying it. This is apparently the reason for the libsafe "errors"
5130      but the code is actually correct.
5131      [Steve Henson]
5132
5133   *) Add new function BN_rand_range(), and fix DSA_sign_setup() to prevent
5134      Bleichenbacher's DSA attack.
5135      Extend BN_[pseudo_]rand: As before, top=1 forces the highest two bits
5136      to be set and top=0 forces the highest bit to be set; top=-1 is new
5137      and leaves the highest bit random.
5138      [Ulf Moeller, Bodo Moeller]
5139
5140   *) In the NCONF_...-based implementations for CONF_... queries
5141      (crypto/conf/conf_lib.c), if the input LHASH is NULL, avoid using
5142      a temporary CONF structure with the data component set to NULL
5143      (which gives segmentation faults in lh_retrieve).
5144      Instead, use NULL for the CONF pointer in CONF_get_string and
5145      CONF_get_number (which may use environment variables) and directly
5146      return NULL from CONF_get_section.
5147      [Bodo Moeller]
5148
5149   *) Fix potential buffer overrun for EBCDIC.
5150      [Ulf Moeller]
5151
5152   *) Tolerate nonRepudiation as being valid for S/MIME signing and certSign
5153      keyUsage if basicConstraints absent for a CA.
5154      [Steve Henson]
5155
5156   *) Make SMIME_write_PKCS7() write mail header values with a format that
5157      is more generally accepted (no spaces before the semicolon), since
5158      some programs can't parse those values properly otherwise.  Also make
5159      sure BIO's that break lines after each write do not create invalid
5160      headers.
5161      [Richard Levitte]
5162
5163   *) Make the CRL encoding routines work with empty SEQUENCE OF. The
5164      macros previously used would not encode an empty SEQUENCE OF
5165      and break the signature.
5166      [Steve Henson]
5167      [This change does not apply to 0.9.7.]
5168
5169   *) Zero the premaster secret after deriving the master secret in
5170      DH ciphersuites.
5171      [Steve Henson]
5172
5173   *) Add some EVP_add_digest_alias registrations (as found in
5174      OpenSSL_add_all_digests()) to SSL_library_init()
5175      aka OpenSSL_add_ssl_algorithms().  This provides improved
5176      compatibility with peers using X.509 certificates
5177      with unconventional AlgorithmIdentifier OIDs.
5178      [Bodo Moeller]
5179
5180   *) Fix for Irix with NO_ASM.
5181      ["Bruce W. Forsberg" <bruce.forsberg@baesystems.com>]
5182
5183   *) ./config script fixes.
5184      [Ulf Moeller, Richard Levitte]
5185
5186   *) Fix 'openssl passwd -1'.
5187      [Bodo Moeller]
5188
5189   *) Change PKCS12_key_gen_asc() so it can cope with non null
5190      terminated strings whose length is passed in the passlen
5191      parameter, for example from PEM callbacks. This was done
5192      by adding an extra length parameter to asc2uni().
5193      [Steve Henson, reported by <oddissey@samsung.co.kr>]
5194
5195   *) Fix C code generated by 'openssl dsaparam -C': If a BN_bin2bn
5196      call failed, free the DSA structure.
5197      [Bodo Moeller]
5198
5199   *) Fix to uni2asc() to cope with zero length Unicode strings.
5200      These are present in some PKCS#12 files.
5201      [Steve Henson]
5202
5203   *) Increase s2->wbuf allocation by one byte in ssl2_new (ssl/s2_lib.c).
5204      Otherwise do_ssl_write (ssl/s2_pkt.c) will write beyond buffer limits
5205      when writing a 32767 byte record.
5206      [Bodo Moeller; problem reported by Eric Day <eday@concentric.net>]
5207
5208   *) In RSA_eay_public_{en,ed}crypt and RSA_eay_mod_exp (rsa_eay.c),
5209      obtain lock CRYPTO_LOCK_RSA before setting rsa->_method_mod_{n,p,q}.
5210
5211      (RSA objects have a reference count access to which is protected
5212      by CRYPTO_LOCK_RSA [see rsa_lib.c, s3_srvr.c, ssl_cert.c, ssl_rsa.c],
5213      so they are meant to be shared between threads.)
5214      [Bodo Moeller, Geoff Thorpe; original patch submitted by
5215      "Reddie, Steven" <Steven.Reddie@ca.com>]
5216
5217   *) Fix a deadlock in CRYPTO_mem_leaks().
5218      [Bodo Moeller]
5219
5220   *) Use better test patterns in bntest.
5221      [Ulf Möller]
5222
5223   *) rand_win.c fix for Borland C.
5224      [Ulf Möller]
5225  
5226   *) BN_rshift bugfix for n == 0.
5227      [Bodo Moeller]
5228
5229   *) Add a 'bctest' script that checks for some known 'bc' bugs
5230      so that 'make test' does not abort just because 'bc' is broken.
5231      [Bodo Moeller]
5232
5233   *) Store verify_result within SSL_SESSION also for client side to
5234      avoid potential security hole. (Re-used sessions on the client side
5235      always resulted in verify_result==X509_V_OK, not using the original
5236      result of the server certificate verification.)
5237      [Lutz Jaenicke]
5238
5239   *) Fix ssl3_pending: If the record in s->s3->rrec is not of type
5240      SSL3_RT_APPLICATION_DATA, return 0.
5241      Similarly, change ssl2_pending to return 0 if SSL_in_init(s) is true.
5242      [Bodo Moeller]
5243
5244   *) Fix SSL_peek:
5245      Both ssl2_peek and ssl3_peek, which were totally broken in earlier
5246      releases, have been re-implemented by renaming the previous
5247      implementations of ssl2_read and ssl3_read to ssl2_read_internal
5248      and ssl3_read_internal, respectively, and adding 'peek' parameters
5249      to them.  The new ssl[23]_{read,peek} functions are calls to
5250      ssl[23]_read_internal with the 'peek' flag set appropriately.
5251      A 'peek' parameter has also been added to ssl3_read_bytes, which
5252      does the actual work for ssl3_read_internal.
5253      [Bodo Moeller]
5254
5255   *) Initialise "ex_data" member of RSA/DSA/DH structures prior to calling
5256      the method-specific "init()" handler. Also clean up ex_data after
5257      calling the method-specific "finish()" handler. Previously, this was
5258      happening the other way round.
5259      [Geoff Thorpe]
5260
5261   *) Increase BN_CTX_NUM (the number of BIGNUMs in a BN_CTX) to 16.
5262      The previous value, 12, was not always sufficient for BN_mod_exp().
5263      [Bodo Moeller]
5264
5265   *) Make sure that shared libraries get the internal name engine with
5266      the full version number and not just 0.  This should mark the
5267      shared libraries as not backward compatible.  Of course, this should
5268      be changed again when we can guarantee backward binary compatibility.
5269      [Richard Levitte]
5270
5271   *) Fix typo in get_cert_by_subject() in by_dir.c
5272      [Jean-Marc Desperrier <jean-marc.desperrier@certplus.com>]
5273
5274   *) Rework the system to generate shared libraries:
5275
5276      - Make note of the expected extension for the shared libraries and
5277        if there is a need for symbolic links from for example libcrypto.so.0
5278        to libcrypto.so.0.9.7.  There is extended info in Configure for
5279        that.
5280
5281      - Make as few rebuilds of the shared libraries as possible.
5282
5283      - Still avoid linking the OpenSSL programs with the shared libraries.
5284
5285      - When installing, install the shared libraries separately from the
5286        static ones.
5287      [Richard Levitte]
5288
5289   *) Fix SSL_CTX_set_read_ahead macro to actually use its argument.
5290
5291      Copy SSL_CTX's read_ahead flag to SSL object directly in SSL_new
5292      and not in SSL_clear because the latter is also used by the
5293      accept/connect functions; previously, the settings made by
5294      SSL_set_read_ahead would be lost during the handshake.
5295      [Bodo Moeller; problems reported by Anders Gertz <gertz@epact.se>]     
5296
5297   *) Correct util/mkdef.pl to be selective about disabled algorithms.
5298      Previously, it would create entries for disableed algorithms no
5299      matter what.
5300      [Richard Levitte]
5301
5302   *) Added several new manual pages for SSL_* function.
5303      [Lutz Jaenicke]
5304
5305  Changes between 0.9.5a and 0.9.6  [24 Sep 2000]
5306
5307   *) In ssl23_get_client_hello, generate an error message when faced
5308      with an initial SSL 3.0/TLS record that is too small to contain the
5309      first two bytes of the ClientHello message, i.e. client_version.
5310      (Note that this is a pathologic case that probably has never happened
5311      in real life.)  The previous approach was to use the version number
5312      from the record header as a substitute; but our protocol choice
5313      should not depend on that one because it is not authenticated
5314      by the Finished messages.
5315      [Bodo Moeller]
5316
5317   *) More robust randomness gathering functions for Windows.
5318      [Jeffrey Altman <jaltman@columbia.edu>]
5319
5320   *) For compatibility reasons if the flag X509_V_FLAG_ISSUER_CHECK is
5321      not set then we don't setup the error code for issuer check errors
5322      to avoid possibly overwriting other errors which the callback does
5323      handle. If an application does set the flag then we assume it knows
5324      what it is doing and can handle the new informational codes
5325      appropriately.
5326      [Steve Henson]
5327
5328   *) Fix for a nasty bug in ASN1_TYPE handling. ASN1_TYPE is used for
5329      a general "ANY" type, as such it should be able to decode anything
5330      including tagged types. However it didn't check the class so it would
5331      wrongly interpret tagged types in the same way as their universal
5332      counterpart and unknown types were just rejected. Changed so that the
5333      tagged and unknown types are handled in the same way as a SEQUENCE:
5334      that is the encoding is stored intact. There is also a new type
5335      "V_ASN1_OTHER" which is used when the class is not universal, in this
5336      case we have no idea what the actual type is so we just lump them all
5337      together.
5338      [Steve Henson]
5339
5340   *) On VMS, stdout may very well lead to a file that is written to
5341      in a record-oriented fashion.  That means that every write() will
5342      write a separate record, which will be read separately by the
5343      programs trying to read from it.  This can be very confusing.
5344
5345      The solution is to put a BIO filter in the way that will buffer
5346      text until a linefeed is reached, and then write everything a
5347      line at a time, so every record written will be an actual line,
5348      not chunks of lines and not (usually doesn't happen, but I've
5349      seen it once) several lines in one record.  BIO_f_linebuffer() is
5350      the answer.
5351
5352      Currently, it's a VMS-only method, because that's where it has
5353      been tested well enough.
5354      [Richard Levitte]
5355
5356   *) Remove 'optimized' squaring variant in BN_mod_mul_montgomery,
5357      it can return incorrect results.
5358      (Note: The buggy variant was not enabled in OpenSSL 0.9.5a,
5359      but it was in 0.9.6-beta[12].)
5360      [Bodo Moeller]
5361
5362   *) Disable the check for content being present when verifying detached
5363      signatures in pk7_smime.c. Some versions of Netscape (wrongly)
5364      include zero length content when signing messages.
5365      [Steve Henson]
5366
5367   *) New BIO_shutdown_wr macro, which invokes the BIO_C_SHUTDOWN_WR
5368      BIO_ctrl (for BIO pairs).
5369      [Bodo Möller]
5370
5371   *) Add DSO method for VMS.
5372      [Richard Levitte]
5373
5374   *) Bug fix: Montgomery multiplication could produce results with the
5375      wrong sign.
5376      [Ulf Möller]
5377
5378   *) Add RPM specification openssl.spec and modify it to build three
5379      packages.  The default package contains applications, application
5380      documentation and run-time libraries.  The devel package contains
5381      include files, static libraries and function documentation.  The
5382      doc package contains the contents of the doc directory.  The original
5383      openssl.spec was provided by Damien Miller <djm@mindrot.org>.
5384      [Richard Levitte]
5385      
5386   *) Add a large number of documentation files for many SSL routines.
5387      [Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>]
5388
5389   *) Add a configuration entry for Sony News 4.
5390      [NAKAJI Hiroyuki <nakaji@tutrp.tut.ac.jp>]
5391
5392   *) Don't set the two most significant bits to one when generating a
5393      random number < q in the DSA library.
5394      [Ulf Möller]
5395
5396   *) New SSL API mode 'SSL_MODE_AUTO_RETRY'.  This disables the default
5397      behaviour that SSL_read may result in SSL_ERROR_WANT_READ (even if
5398      the underlying transport is blocking) if a handshake took place.
5399      (The default behaviour is needed by applications such as s_client
5400      and s_server that use select() to determine when to use SSL_read;
5401      but for applications that know in advance when to expect data, it
5402      just makes things more complicated.)
5403      [Bodo Moeller]
5404
5405   *) Add RAND_egd_bytes(), which gives control over the number of bytes read
5406      from EGD.
5407      [Ben Laurie]
5408
5409   *) Add a few more EBCDIC conditionals that make `req' and `x509'
5410      work better on such systems.
5411      [Martin Kraemer <Martin.Kraemer@MchP.Siemens.De>]
5412
5413   *) Add two demo programs for PKCS12_parse() and PKCS12_create().
5414      Update PKCS12_parse() so it copies the friendlyName and the
5415      keyid to the certificates aux info.
5416      [Steve Henson]
5417
5418   *) Fix bug in PKCS7_verify() which caused an infinite loop
5419      if there was more than one signature.
5420      [Sven Uszpelkat <su@celocom.de>]
5421
5422   *) Major change in util/mkdef.pl to include extra information
5423      about each symbol, as well as presentig variables as well
5424      as functions.  This change means that there's n more need
5425      to rebuild the .num files when some algorithms are excluded.
5426      [Richard Levitte]
5427
5428   *) Allow the verify time to be set by an application,
5429      rather than always using the current time.
5430      [Steve Henson]
5431   
5432   *) Phase 2 verify code reorganisation. The certificate
5433      verify code now looks up an issuer certificate by a
5434      number of criteria: subject name, authority key id
5435      and key usage. It also verifies self signed certificates
5436      by the same criteria. The main comparison function is
5437      X509_check_issued() which performs these checks.
5438  
5439      Lot of changes were necessary in order to support this
5440      without completely rewriting the lookup code.
5441  
5442      Authority and subject key identifier are now cached.
5443  
5444      The LHASH 'certs' is X509_STORE has now been replaced
5445      by a STACK_OF(X509_OBJECT). This is mainly because an
5446      LHASH can't store or retrieve multiple objects with
5447      the same hash value.
5448
5449      As a result various functions (which were all internal
5450      use only) have changed to handle the new X509_STORE
5451      structure. This will break anything that messed round
5452      with X509_STORE internally.
5453  
5454      The functions X509_STORE_add_cert() now checks for an
5455      exact match, rather than just subject name.
5456  
5457      The X509_STORE API doesn't directly support the retrieval
5458      of multiple certificates matching a given criteria, however
5459      this can be worked round by performing a lookup first
5460      (which will fill the cache with candidate certificates)
5461      and then examining the cache for matches. This is probably
5462      the best we can do without throwing out X509_LOOKUP
5463      entirely (maybe later...).
5464  
5465      The X509_VERIFY_CTX structure has been enhanced considerably.
5466  
5467      All certificate lookup operations now go via a get_issuer()
5468      callback. Although this currently uses an X509_STORE it
5469      can be replaced by custom lookups. This is a simple way
5470      to bypass the X509_STORE hackery necessary to make this
5471      work and makes it possible to use more efficient techniques
5472      in future. A very simple version which uses a simple
5473      STACK for its trusted certificate store is also provided
5474      using X509_STORE_CTX_trusted_stack().
5475  
5476      The verify_cb() and verify() callbacks now have equivalents
5477      in the X509_STORE_CTX structure.
5478  
5479      X509_STORE_CTX also has a 'flags' field which can be used
5480      to customise the verify behaviour.
5481      [Steve Henson]
5482  
5483   *) Add new PKCS#7 signing option PKCS7_NOSMIMECAP which 
5484      excludes S/MIME capabilities.
5485      [Steve Henson]
5486
5487   *) When a certificate request is read in keep a copy of the
5488      original encoding of the signed data and use it when outputing
5489      again. Signatures then use the original encoding rather than
5490      a decoded, encoded version which may cause problems if the
5491      request is improperly encoded.
5492      [Steve Henson]
5493
5494   *) For consistency with other BIO_puts implementations, call
5495      buffer_write(b, ...) directly in buffer_puts instead of calling
5496      BIO_write(b, ...).
5497
5498      In BIO_puts, increment b->num_write as in BIO_write.
5499      [Peter.Sylvester@EdelWeb.fr]
5500
5501   *) Fix BN_mul_word for the case where the word is 0. (We have to use
5502      BN_zero, we may not return a BIGNUM with an array consisting of
5503      words set to zero.)
5504      [Bodo Moeller]
5505
5506   *) Avoid calling abort() from within the library when problems are
5507      detected, except if preprocessor symbols have been defined
5508      (such as REF_CHECK, BN_DEBUG etc.).
5509      [Bodo Moeller]
5510
5511   *) New openssl application 'rsautl'. This utility can be
5512      used for low level RSA operations. DER public key
5513      BIO/fp routines also added.
5514      [Steve Henson]
5515
5516   *) New Configure entry and patches for compiling on QNX 4.
5517      [Andreas Schneider <andreas@ds3.etech.fh-hamburg.de>]
5518
5519   *) A demo state-machine implementation was sponsored by
5520      Nuron (http://www.nuron.com/) and is now available in
5521      demos/state_machine.
5522      [Ben Laurie]
5523
5524   *) New options added to the 'dgst' utility for signature
5525      generation and verification.
5526      [Steve Henson]
5527
5528   *) Unrecognized PKCS#7 content types are now handled via a
5529      catch all ASN1_TYPE structure. This allows unsupported
5530      types to be stored as a "blob" and an application can
5531      encode and decode it manually.
5532      [Steve Henson]
5533
5534   *) Fix various signed/unsigned issues to make a_strex.c
5535      compile under VC++.
5536      [Oscar Jacobsson <oscar.jacobsson@celocom.com>]
5537
5538   *) ASN1 fixes. i2d_ASN1_OBJECT was not returning the correct
5539      length if passed a buffer. ASN1_INTEGER_to_BN failed
5540      if passed a NULL BN and its argument was negative.
5541      [Steve Henson, pointed out by Sven Heiberg <sven@tartu.cyber.ee>]
5542
5543   *) Modification to PKCS#7 encoding routines to output definite
5544      length encoding. Since currently the whole structures are in
5545      memory there's not real point in using indefinite length 
5546      constructed encoding. However if OpenSSL is compiled with
5547      the flag PKCS7_INDEFINITE_ENCODING the old form is used.
5548      [Steve Henson]
5549
5550   *) Added BIO_vprintf() and BIO_vsnprintf().
5551      [Richard Levitte]
5552
5553   *) Added more prefixes to parse for in the the strings written
5554      through a logging bio, to cover all the levels that are available
5555      through syslog.  The prefixes are now:
5556
5557         PANIC, EMERG, EMR       =>      LOG_EMERG
5558         ALERT, ALR              =>      LOG_ALERT
5559         CRIT, CRI               =>      LOG_CRIT
5560         ERROR, ERR              =>      LOG_ERR
5561         WARNING, WARN, WAR      =>      LOG_WARNING
5562         NOTICE, NOTE, NOT       =>      LOG_NOTICE
5563         INFO, INF               =>      LOG_INFO
5564         DEBUG, DBG              =>      LOG_DEBUG
5565
5566      and as before, if none of those prefixes are present at the
5567      beginning of the string, LOG_ERR is chosen.
5568
5569      On Win32, the LOG_* levels are mapped according to this:
5570
5571         LOG_EMERG, LOG_ALERT, LOG_CRIT, LOG_ERR => EVENTLOG_ERROR_TYPE
5572         LOG_WARNING                             => EVENTLOG_WARNING_TYPE
5573         LOG_NOTICE, LOG_INFO, LOG_DEBUG         => EVENTLOG_INFORMATION_TYPE
5574
5575      [Richard Levitte]
5576
5577   *) Made it possible to reconfigure with just the configuration
5578      argument "reconf" or "reconfigure".  The command line arguments
5579      are stored in Makefile.ssl in the variable CONFIGURE_ARGS,
5580      and are retrieved from there when reconfiguring.
5581      [Richard Levitte]
5582
5583   *) MD4 implemented.
5584      [Assar Westerlund <assar@sics.se>, Richard Levitte]
5585
5586   *) Add the arguments -CAfile and -CApath to the pkcs12 utility.
5587      [Richard Levitte]
5588
5589   *) The obj_dat.pl script was messing up the sorting of object
5590      names. The reason was that it compared the quoted version
5591      of strings as a result "OCSP" > "OCSP Signing" because
5592      " > SPACE. Changed script to store unquoted versions of
5593      names and add quotes on output. It was also omitting some
5594      names from the lookup table if they were given a default
5595      value (that is if SN is missing it is given the same
5596      value as LN and vice versa), these are now added on the
5597      grounds that if an object has a name we should be able to
5598      look it up. Finally added warning output when duplicate
5599      short or long names are found.
5600      [Steve Henson]
5601
5602   *) Changes needed for Tandem NSK.
5603      [Scott Uroff <scott@xypro.com>]
5604
5605   *) Fix SSL 2.0 rollback checking: Due to an off-by-one error in
5606      RSA_padding_check_SSLv23(), special padding was never detected
5607      and thus the SSL 3.0/TLS 1.0 countermeasure against protocol
5608      version rollback attacks was not effective.
5609
5610      In s23_clnt.c, don't use special rollback-attack detection padding
5611      (RSA_SSLV23_PADDING) if SSL 2.0 is the only protocol enabled in the
5612      client; similarly, in s23_srvr.c, don't do the rollback check if
5613      SSL 2.0 is the only protocol enabled in the server.
5614      [Bodo Moeller]
5615
5616   *) Make it possible to get hexdumps of unprintable data with 'openssl
5617      asn1parse'.  By implication, the functions ASN1_parse_dump() and
5618      BIO_dump_indent() are added.
5619      [Richard Levitte]
5620
5621   *) New functions ASN1_STRING_print_ex() and X509_NAME_print_ex()
5622      these print out strings and name structures based on various
5623      flags including RFC2253 support and proper handling of
5624      multibyte characters. Added options to the 'x509' utility 
5625      to allow the various flags to be set.
5626      [Steve Henson]
5627
5628   *) Various fixes to use ASN1_TIME instead of ASN1_UTCTIME.
5629      Also change the functions X509_cmp_current_time() and
5630      X509_gmtime_adj() work with an ASN1_TIME structure,
5631      this will enable certificates using GeneralizedTime in validity
5632      dates to be checked.
5633      [Steve Henson]
5634
5635   *) Make the NEG_PUBKEY_BUG code (which tolerates invalid
5636      negative public key encodings) on by default,
5637      NO_NEG_PUBKEY_BUG can be set to disable it.
5638      [Steve Henson]
5639
5640   *) New function c2i_ASN1_OBJECT() which acts on ASN1_OBJECT
5641      content octets. An i2c_ASN1_OBJECT is unnecessary because
5642      the encoding can be trivially obtained from the structure.
5643      [Steve Henson]
5644
5645   *) crypto/err.c locking bugfix: Use write locks (CRYPTO_w_[un]lock),
5646      not read locks (CRYPTO_r_[un]lock).
5647      [Bodo Moeller]
5648
5649   *) A first attempt at creating official support for shared
5650      libraries through configuration.  I've kept it so the
5651      default is static libraries only, and the OpenSSL programs
5652      are always statically linked for now, but there are
5653      preparations for dynamic linking in place.
5654      This has been tested on Linux and Tru64.
5655      [Richard Levitte]
5656
5657   *) Randomness polling function for Win9x, as described in:
5658      Peter Gutmann, Software Generation of Practically Strong
5659      Random Numbers.
5660      [Ulf Möller]
5661
5662   *) Fix so PRNG is seeded in req if using an already existing
5663      DSA key.
5664      [Steve Henson]
5665
5666   *) New options to smime application. -inform and -outform
5667      allow alternative formats for the S/MIME message including
5668      PEM and DER. The -content option allows the content to be
5669      specified separately. This should allow things like Netscape
5670      form signing output easier to verify.
5671      [Steve Henson]
5672
5673   *) Fix the ASN1 encoding of tags using the 'long form'.
5674      [Steve Henson]
5675
5676   *) New ASN1 functions, i2c_* and c2i_* for INTEGER and BIT
5677      STRING types. These convert content octets to and from the
5678      underlying type. The actual tag and length octets are
5679      already assumed to have been read in and checked. These
5680      are needed because all other string types have virtually
5681      identical handling apart from the tag. By having versions
5682      of the ASN1 functions that just operate on content octets
5683      IMPLICIT tagging can be handled properly. It also allows
5684      the ASN1_ENUMERATED code to be cut down because ASN1_ENUMERATED
5685      and ASN1_INTEGER are identical apart from the tag.
5686      [Steve Henson]
5687
5688   *) Change the handling of OID objects as follows:
5689
5690      - New object identifiers are inserted in objects.txt, following
5691        the syntax given in objects.README.
5692      - objects.pl is used to process obj_mac.num and create a new
5693        obj_mac.h.
5694      - obj_dat.pl is used to create a new obj_dat.h, using the data in
5695        obj_mac.h.
5696
5697      This is currently kind of a hack, and the perl code in objects.pl
5698      isn't very elegant, but it works as I intended.  The simplest way
5699      to check that it worked correctly is to look in obj_dat.h and
5700      check the array nid_objs and make sure the objects haven't moved
5701      around (this is important!).  Additions are OK, as well as
5702      consistent name changes. 
5703      [Richard Levitte]
5704
5705   *) Add BSD-style MD5-based passwords to 'openssl passwd' (option '-1').
5706      [Bodo Moeller]
5707
5708   *) Addition of the command line parameter '-rand file' to 'openssl req'.
5709      The given file adds to whatever has already been seeded into the
5710      random pool through the RANDFILE configuration file option or
5711      environment variable, or the default random state file.
5712      [Richard Levitte]
5713
5714   *) mkstack.pl now sorts each macro group into lexical order.
5715      Previously the output order depended on the order the files
5716      appeared in the directory, resulting in needless rewriting
5717      of safestack.h .
5718      [Steve Henson]
5719
5720   *) Patches to make OpenSSL compile under Win32 again. Mostly
5721      work arounds for the VC++ problem that it treats func() as
5722      func(void). Also stripped out the parts of mkdef.pl that
5723      added extra typesafe functions: these no longer exist.
5724      [Steve Henson]
5725
5726   *) Reorganisation of the stack code. The macros are now all 
5727      collected in safestack.h . Each macro is defined in terms of
5728      a "stack macro" of the form SKM_<name>(type, a, b). The 
5729      DEBUG_SAFESTACK is now handled in terms of function casts,
5730      this has the advantage of retaining type safety without the
5731      use of additional functions. If DEBUG_SAFESTACK is not defined
5732      then the non typesafe macros are used instead. Also modified the
5733      mkstack.pl script to handle the new form. Needs testing to see
5734      if which (if any) compilers it chokes and maybe make DEBUG_SAFESTACK
5735      the default if no major problems. Similar behaviour for ASN1_SET_OF
5736      and PKCS12_STACK_OF.
5737      [Steve Henson]
5738
5739   *) When some versions of IIS use the 'NET' form of private key the
5740      key derivation algorithm is different. Normally MD5(password) is
5741      used as a 128 bit RC4 key. In the modified case
5742      MD5(MD5(password) + "SGCKEYSALT")  is used insted. Added some
5743      new functions i2d_RSA_NET(), d2i_RSA_NET() etc which are the same
5744      as the old Netscape_RSA functions except they have an additional
5745      'sgckey' parameter which uses the modified algorithm. Also added
5746      an -sgckey command line option to the rsa utility. Thanks to 
5747      Adrian Peck <bertie@ncipher.com> for posting details of the modified
5748      algorithm to openssl-dev.
5749      [Steve Henson]
5750
5751   *) The evp_local.h macros were using 'c.##kname' which resulted in
5752      invalid expansion on some systems (SCO 5.0.5 for example).
5753      Corrected to 'c.kname'.
5754      [Phillip Porch <root@theporch.com>]
5755
5756   *) New X509_get1_email() and X509_REQ_get1_email() functions that return
5757      a STACK of email addresses from a certificate or request, these look
5758      in the subject name and the subject alternative name extensions and 
5759      omit any duplicate addresses.
5760      [Steve Henson]
5761
5762   *) Re-implement BN_mod_exp2_mont using independent (and larger) windows.
5763      This makes DSA verification about 2 % faster.
5764      [Bodo Moeller]
5765
5766   *) Increase maximum window size in BN_mod_exp_... to 6 bits instead of 5
5767      (meaning that now 2^5 values will be precomputed, which is only 4 KB
5768      plus overhead for 1024 bit moduli).
5769      This makes exponentiations about 0.5 % faster for 1024 bit
5770      exponents (as measured by "openssl speed rsa2048").
5771      [Bodo Moeller]
5772
5773   *) Rename memory handling macros to avoid conflicts with other
5774      software:
5775           Malloc         =>  OPENSSL_malloc
5776           Malloc_locked  =>  OPENSSL_malloc_locked
5777           Realloc        =>  OPENSSL_realloc
5778           Free           =>  OPENSSL_free
5779      [Richard Levitte]
5780
5781   *) New function BN_mod_exp_mont_word for small bases (roughly 15%
5782      faster than BN_mod_exp_mont, i.e. 7% for a full DH exchange).
5783      [Bodo Moeller]
5784
5785   *) CygWin32 support.
5786      [John Jarvie <jjarvie@newsguy.com>]
5787
5788   *) The type-safe stack code has been rejigged. It is now only compiled
5789      in when OpenSSL is configured with the DEBUG_SAFESTACK option and
5790      by default all type-specific stack functions are "#define"d back to
5791      standard stack functions. This results in more streamlined output
5792      but retains the type-safety checking possibilities of the original
5793      approach.
5794      [Geoff Thorpe]
5795
5796   *) The STACK code has been cleaned up, and certain type declarations
5797      that didn't make a lot of sense have been brought in line. This has
5798      also involved a cleanup of sorts in safestack.h to more correctly
5799      map type-safe stack functions onto their plain stack counterparts.
5800      This work has also resulted in a variety of "const"ifications of
5801      lots of the code, especially "_cmp" operations which should normally
5802      be prototyped with "const" parameters anyway.
5803      [Geoff Thorpe]
5804
5805   *) When generating bytes for the first time in md_rand.c, 'stir the pool'
5806      by seeding with STATE_SIZE dummy bytes (with zero entropy count).
5807      (The PRNG state consists of two parts, the large pool 'state' and 'md',
5808      where all of 'md' is used each time the PRNG is used, but 'state'
5809      is used only indexed by a cyclic counter. As entropy may not be
5810      well distributed from the beginning, 'md' is important as a
5811      chaining variable. However, the output function chains only half
5812      of 'md', i.e. 80 bits.  ssleay_rand_add, on the other hand, chains
5813      all of 'md', and seeding with STATE_SIZE dummy bytes will result
5814      in all of 'state' being rewritten, with the new values depending
5815      on virtually all of 'md'.  This overcomes the 80 bit limitation.)
5816      [Bodo Moeller]
5817
5818   *) In ssl/s2_clnt.c and ssl/s3_clnt.c, call ERR_clear_error() when
5819      the handshake is continued after ssl_verify_cert_chain();
5820      otherwise, if SSL_VERIFY_NONE is set, remaining error codes
5821      can lead to 'unexplainable' connection aborts later.
5822      [Bodo Moeller; problem tracked down by Lutz Jaenicke]
5823
5824   *) Major EVP API cipher revision.
5825      Add hooks for extra EVP features. This allows various cipher
5826      parameters to be set in the EVP interface. Support added for variable
5827      key length ciphers via the EVP_CIPHER_CTX_set_key_length() function and
5828      setting of RC2 and RC5 parameters.
5829
5830      Modify EVP_OpenInit() and EVP_SealInit() to cope with variable key length
5831      ciphers.
5832
5833      Remove lots of duplicated code from the EVP library. For example *every*
5834      cipher init() function handles the 'iv' in the same way according to the
5835      cipher mode. They also all do nothing if the 'key' parameter is NULL and
5836      for CFB and OFB modes they zero ctx->num.
5837
5838      New functionality allows removal of S/MIME code RC2 hack.
5839
5840      Most of the routines have the same form and so can be declared in terms
5841      of macros.
5842
5843      By shifting this to the top level EVP_CipherInit() it can be removed from
5844      all individual ciphers. If the cipher wants to handle IVs or keys
5845      differently it can set the EVP_CIPH_CUSTOM_IV or EVP_CIPH_ALWAYS_CALL_INIT
5846      flags.
5847
5848      Change lots of functions like EVP_EncryptUpdate() to now return a
5849      value: although software versions of the algorithms cannot fail
5850      any installed hardware versions can.
5851      [Steve Henson]
5852
5853   *) Implement SSL_OP_TLS_ROLLBACK_BUG: In ssl3_get_client_key_exchange, if
5854      this option is set, tolerate broken clients that send the negotiated
5855      protocol version number instead of the requested protocol version
5856      number.
5857      [Bodo Moeller]
5858
5859   *) Call dh_tmp_cb (set by ..._TMP_DH_CB) with correct 'is_export' flag;
5860      i.e. non-zero for export ciphersuites, zero otherwise.
5861      Previous versions had this flag inverted, inconsistent with
5862      rsa_tmp_cb (..._TMP_RSA_CB).
5863      [Bodo Moeller; problem reported by Amit Chopra]
5864
5865   *) Add missing DSA library text string. Work around for some IIS
5866      key files with invalid SEQUENCE encoding.
5867      [Steve Henson]
5868
5869   *) Add a document (doc/standards.txt) that list all kinds of standards
5870      and so on that are implemented in OpenSSL.
5871      [Richard Levitte]
5872
5873   *) Enhance c_rehash script. Old version would mishandle certificates
5874      with the same subject name hash and wouldn't handle CRLs at all.
5875      Added -fingerprint option to crl utility, to support new c_rehash
5876      features.
5877      [Steve Henson]
5878
5879   *) Eliminate non-ANSI declarations in crypto.h and stack.h.
5880      [Ulf Möller]
5881
5882   *) Fix for SSL server purpose checking. Server checking was
5883      rejecting certificates which had extended key usage present
5884      but no ssl client purpose.
5885      [Steve Henson, reported by Rene Grosser <grosser@hisolutions.com>]
5886
5887   *) Make PKCS#12 code work with no password. The PKCS#12 spec
5888      is a little unclear about how a blank password is handled.
5889      Since the password in encoded as a BMPString with terminating
5890      double NULL a zero length password would end up as just the
5891      double NULL. However no password at all is different and is
5892      handled differently in the PKCS#12 key generation code. NS
5893      treats a blank password as zero length. MSIE treats it as no
5894      password on export: but it will try both on import. We now do
5895      the same: PKCS12_parse() tries zero length and no password if
5896      the password is set to "" or NULL (NULL is now a valid password:
5897      it wasn't before) as does the pkcs12 application.
5898      [Steve Henson]
5899
5900   *) Bugfixes in apps/x509.c: Avoid a memory leak; and don't use
5901      perror when PEM_read_bio_X509_REQ fails, the error message must
5902      be obtained from the error queue.
5903      [Bodo Moeller]
5904
5905   *) Avoid 'thread_hash' memory leak in crypto/err/err.c by freeing
5906      it in ERR_remove_state if appropriate, and change ERR_get_state
5907      accordingly to avoid race conditions (this is necessary because
5908      thread_hash is no longer constant once set).
5909      [Bodo Moeller]
5910
5911   *) Bugfix for linux-elf makefile.one.
5912      [Ulf Möller]
5913
5914   *) RSA_get_default_method() will now cause a default
5915      RSA_METHOD to be chosen if one doesn't exist already.
5916      Previously this was only set during a call to RSA_new()
5917      or RSA_new_method(NULL) meaning it was possible for
5918      RSA_get_default_method() to return NULL.
5919      [Geoff Thorpe]
5920
5921   *) Added native name translation to the existing DSO code
5922      that will convert (if the flag to do so is set) filenames
5923      that are sufficiently small and have no path information
5924      into a canonical native form. Eg. "blah" converted to
5925      "libblah.so" or "blah.dll" etc.
5926      [Geoff Thorpe]
5927
5928   *) New function ERR_error_string_n(e, buf, len) which is like
5929      ERR_error_string(e, buf), but writes at most 'len' bytes
5930      including the 0 terminator.  For ERR_error_string_n, 'buf'
5931      may not be NULL.
5932      [Damien Miller <djm@mindrot.org>, Bodo Moeller]
5933
5934   *) CONF library reworked to become more general.  A new CONF
5935      configuration file reader "class" is implemented as well as a
5936      new functions (NCONF_*, for "New CONF") to handle it.  The now
5937      old CONF_* functions are still there, but are reimplemented to
5938      work in terms of the new functions.  Also, a set of functions
5939      to handle the internal storage of the configuration data is
5940      provided to make it easier to write new configuration file
5941      reader "classes" (I can definitely see something reading a
5942      configuration file in XML format, for example), called _CONF_*,
5943      or "the configuration storage API"...
5944
5945      The new configuration file reading functions are:
5946
5947         NCONF_new, NCONF_free, NCONF_load, NCONF_load_fp, NCONF_load_bio,
5948         NCONF_get_section, NCONF_get_string, NCONF_get_numbre
5949
5950         NCONF_default, NCONF_WIN32
5951
5952         NCONF_dump_fp, NCONF_dump_bio
5953
5954      NCONF_default and NCONF_WIN32 are method (or "class") choosers,
5955      NCONF_new creates a new CONF object.  This works in the same way
5956      as other interfaces in OpenSSL, like the BIO interface.
5957      NCONF_dump_* dump the internal storage of the configuration file,
5958      which is useful for debugging.  All other functions take the same
5959      arguments as the old CONF_* functions wth the exception of the
5960      first that must be a `CONF *' instead of a `LHASH *'.
5961
5962      To make it easer to use the new classes with the old CONF_* functions,
5963      the function CONF_set_default_method is provided.
5964      [Richard Levitte]
5965
5966   *) Add '-tls1' option to 'openssl ciphers', which was already
5967      mentioned in the documentation but had not been implemented.
5968      (This option is not yet really useful because even the additional
5969      experimental TLS 1.0 ciphers are currently treated as SSL 3.0 ciphers.)
5970      [Bodo Moeller]
5971
5972   *) Initial DSO code added into libcrypto for letting OpenSSL (and
5973      OpenSSL-based applications) load shared libraries and bind to
5974      them in a portable way.
5975      [Geoff Thorpe, with contributions from Richard Levitte]
5976
5977  Changes between 0.9.5 and 0.9.5a  [1 Apr 2000]
5978
5979   *) Make sure _lrotl and _lrotr are only used with MSVC.
5980
5981   *) Use lock CRYPTO_LOCK_RAND correctly in ssleay_rand_status
5982      (the default implementation of RAND_status).
5983
5984   *) Rename openssl x509 option '-crlext', which was added in 0.9.5,
5985      to '-clrext' (= clear extensions), as intended and documented.
5986      [Bodo Moeller; inconsistency pointed out by Michael Attili
5987      <attili@amaxo.com>]
5988
5989   *) Fix for HMAC. It wasn't zeroing the rest of the block if the key length
5990      was larger than the MD block size.      
5991      [Steve Henson, pointed out by Yost William <YostW@tce.com>]
5992
5993   *) Modernise PKCS12_parse() so it uses STACK_OF(X509) for its ca argument
5994      fix a leak when the ca argument was passed as NULL. Stop X509_PUBKEY_set()
5995      using the passed key: if the passed key was a private key the result
5996      of X509_print(), for example, would be to print out all the private key
5997      components.
5998      [Steve Henson]
5999
6000   *) des_quad_cksum() byte order bug fix.
6001      [Ulf Möller, using the problem description in krb4-0.9.7, where
6002       the solution is attributed to Derrick J Brashear <shadow@DEMENTIA.ORG>]
6003
6004   *) Fix so V_ASN1_APP_CHOOSE works again: however its use is strongly
6005      discouraged.
6006      [Steve Henson, pointed out by Brian Korver <briank@cs.stanford.edu>]
6007
6008   *) For easily testing in shell scripts whether some command
6009      'openssl XXX' exists, the new pseudo-command 'openssl no-XXX'
6010      returns with exit code 0 iff no command of the given name is available.
6011      'no-XXX' is printed in this case, 'XXX' otherwise.  In both cases,
6012      the output goes to stdout and nothing is printed to stderr.
6013      Additional arguments are always ignored.
6014
6015      Since for each cipher there is a command of the same name,
6016      the 'no-cipher' compilation switches can be tested this way.
6017
6018      ('openssl no-XXX' is not able to detect pseudo-commands such
6019      as 'quit', 'list-XXX-commands', or 'no-XXX' itself.)
6020      [Bodo Moeller]
6021
6022   *) Update test suite so that 'make test' succeeds in 'no-rsa' configuration.
6023      [Bodo Moeller]
6024
6025   *) For SSL_[CTX_]set_tmp_dh, don't create a DH key if SSL_OP_SINGLE_DH_USE
6026      is set; it will be thrown away anyway because each handshake creates
6027      its own key.
6028      ssl_cert_dup, which is used by SSL_new, now copies DH keys in addition
6029      to parameters -- in previous versions (since OpenSSL 0.9.3) the
6030      'default key' from SSL_CTX_set_tmp_dh would always be lost, meanining
6031      you effectivly got SSL_OP_SINGLE_DH_USE when using this macro.
6032      [Bodo Moeller]
6033
6034   *) New s_client option -ign_eof: EOF at stdin is ignored, and
6035      'Q' and 'R' lose their special meanings (quit/renegotiate).
6036      This is part of what -quiet does; unlike -quiet, -ign_eof
6037      does not suppress any output.
6038      [Richard Levitte]
6039
6040   *) Add compatibility options to the purpose and trust code. The
6041      purpose X509_PURPOSE_ANY is "any purpose" which automatically
6042      accepts a certificate or CA, this was the previous behaviour,
6043      with all the associated security issues.
6044
6045      X509_TRUST_COMPAT is the old trust behaviour: only and
6046      automatically trust self signed roots in certificate store. A
6047      new trust setting X509_TRUST_DEFAULT is used to specify that
6048      a purpose has no associated trust setting and it should instead
6049      use the value in the default purpose.
6050      [Steve Henson]
6051
6052   *) Fix the PKCS#8 DSA private key code so it decodes keys again
6053      and fix a memory leak.
6054      [Steve Henson]
6055
6056   *) In util/mkerr.pl (which implements 'make errors'), preserve
6057      reason strings from the previous version of the .c file, as
6058      the default to have only downcase letters (and digits) in
6059      automatically generated reasons codes is not always appropriate.
6060      [Bodo Moeller]
6061
6062   *) In ERR_load_ERR_strings(), build an ERR_LIB_SYS error reason table
6063      using strerror.  Previously, ERR_reason_error_string() returned
6064      library names as reason strings for SYSerr; but SYSerr is a special
6065      case where small numbers are errno values, not library numbers.
6066      [Bodo Moeller]
6067
6068   *) Add '-dsaparam' option to 'openssl dhparam' application.  This
6069      converts DSA parameters into DH parameters. (When creating parameters,
6070      DSA_generate_parameters is used.)
6071      [Bodo Moeller]
6072
6073   *) Include 'length' (recommended exponent length) in C code generated
6074      by 'openssl dhparam -C'.
6075      [Bodo Moeller]
6076
6077   *) The second argument to set_label in perlasm was already being used
6078      so couldn't be used as a "file scope" flag. Moved to third argument
6079      which was free.
6080      [Steve Henson]
6081
6082   *) In PEM_ASN1_write_bio and some other functions, use RAND_pseudo_bytes
6083      instead of RAND_bytes for encryption IVs and salts.
6084      [Bodo Moeller]
6085
6086   *) Include RAND_status() into RAND_METHOD instead of implementing
6087      it only for md_rand.c  Otherwise replacing the PRNG by calling
6088      RAND_set_rand_method would be impossible.
6089      [Bodo Moeller]
6090
6091   *) Don't let DSA_generate_key() enter an infinite loop if the random
6092      number generation fails.
6093      [Bodo Moeller]
6094
6095   *) New 'rand' application for creating pseudo-random output.
6096      [Bodo Moeller]
6097
6098   *) Added configuration support for Linux/IA64
6099      [Rolf Haberrecker <rolf@suse.de>]
6100
6101   *) Assembler module support for Mingw32.
6102      [Ulf Möller]
6103
6104   *) Shared library support for HPUX (in shlib/).
6105      [Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> and Anonymous]
6106
6107   *) Shared library support for Solaris gcc.
6108      [Lutz Behnke <behnke@trustcenter.de>]
6109
6110  Changes between 0.9.4 and 0.9.5  [28 Feb 2000]
6111
6112   *) PKCS7_encrypt() was adding text MIME headers twice because they
6113      were added manually and by SMIME_crlf_copy().
6114      [Steve Henson]
6115
6116   *) In bntest.c don't call BN_rand with zero bits argument.
6117      [Steve Henson, pointed out by Andrew W. Gray <agray@iconsinc.com>]
6118
6119   *) BN_mul bugfix: In bn_mul_part_recursion() only the a>a[n] && b>b[n]
6120      case was implemented. This caused BN_div_recp() to fail occasionally.
6121      [Ulf Möller]
6122
6123   *) Add an optional second argument to the set_label() in the perl
6124      assembly language builder. If this argument exists and is set
6125      to 1 it signals that the assembler should use a symbol whose 
6126      scope is the entire file, not just the current function. This
6127      is needed with MASM which uses the format label:: for this scope.
6128      [Steve Henson, pointed out by Peter Runestig <peter@runestig.com>]
6129
6130   *) Change the ASN1 types so they are typedefs by default. Before
6131      almost all types were #define'd to ASN1_STRING which was causing
6132      STACK_OF() problems: you couldn't declare STACK_OF(ASN1_UTF8STRING)
6133      for example.
6134      [Steve Henson]
6135
6136   *) Change names of new functions to the new get1/get0 naming
6137      convention: After 'get1', the caller owns a reference count
6138      and has to call ..._free; 'get0' returns a pointer to some
6139      data structure without incrementing reference counters.
6140      (Some of the existing 'get' functions increment a reference
6141      counter, some don't.)
6142      Similarly, 'set1' and 'add1' functions increase reference
6143      counters or duplicate objects.
6144      [Steve Henson]
6145
6146   *) Allow for the possibility of temp RSA key generation failure:
6147      the code used to assume it always worked and crashed on failure.
6148      [Steve Henson]
6149
6150   *) Fix potential buffer overrun problem in BIO_printf().
6151      [Ulf Möller, using public domain code by Patrick Powell; problem
6152       pointed out by David Sacerdote <das33@cornell.edu>]
6153
6154   *) Support EGD <http://www.lothar.com/tech/crypto/>.  New functions
6155      RAND_egd() and RAND_status().  In the command line application,
6156      the EGD socket can be specified like a seed file using RANDFILE
6157      or -rand.
6158      [Ulf Möller]
6159
6160   *) Allow the string CERTIFICATE to be tolerated in PKCS#7 structures.
6161      Some CAs (e.g. Verisign) distribute certificates in this form.
6162      [Steve Henson]
6163
6164   *) Remove the SSL_ALLOW_ADH compile option and set the default cipher
6165      list to exclude them. This means that no special compilation option
6166      is needed to use anonymous DH: it just needs to be included in the
6167      cipher list.
6168      [Steve Henson]
6169
6170   *) Change the EVP_MD_CTX_type macro so its meaning consistent with
6171      EVP_MD_type. The old functionality is available in a new macro called
6172      EVP_MD_md(). Change code that uses it and update docs.
6173      [Steve Henson]
6174
6175   *) ..._ctrl functions now have corresponding ..._callback_ctrl functions
6176      where the 'void *' argument is replaced by a function pointer argument.
6177      Previously 'void *' was abused to point to functions, which works on
6178      many platforms, but is not correct.  As these functions are usually
6179      called by macros defined in OpenSSL header files, most source code
6180      should work without changes.
6181      [Richard Levitte]
6182
6183   *) <openssl/opensslconf.h> (which is created by Configure) now contains
6184      sections with information on -D... compiler switches used for
6185      compiling the library so that applications can see them.  To enable
6186      one of these sections, a pre-processor symbol OPENSSL_..._DEFINES
6187      must be defined.  E.g.,
6188         #define OPENSSL_ALGORITHM_DEFINES
6189         #include <openssl/opensslconf.h>
6190      defines all pertinent NO_<algo> symbols, such as NO_IDEA, NO_RSA, etc.
6191      [Richard Levitte, Ulf and Bodo Möller]
6192
6193   *) Bugfix: Tolerate fragmentation and interleaving in the SSL 3/TLS
6194      record layer.
6195      [Bodo Moeller]
6196
6197   *) Change the 'other' type in certificate aux info to a STACK_OF
6198      X509_ALGOR. Although not an AlgorithmIdentifier as such it has
6199      the required ASN1 format: arbitrary types determined by an OID.
6200      [Steve Henson]
6201
6202   *) Add some PEM_write_X509_REQ_NEW() functions and a command line
6203      argument to 'req'. This is not because the function is newer or
6204      better than others it just uses the work 'NEW' in the certificate
6205      request header lines. Some software needs this.
6206      [Steve Henson]
6207
6208   *) Reorganise password command line arguments: now passwords can be
6209      obtained from various sources. Delete the PEM_cb function and make
6210      it the default behaviour: i.e. if the callback is NULL and the
6211      usrdata argument is not NULL interpret it as a null terminated pass
6212      phrase. If usrdata and the callback are NULL then the pass phrase
6213      is prompted for as usual.
6214      [Steve Henson]
6215
6216   *) Add support for the Compaq Atalla crypto accelerator. If it is installed,
6217      the support is automatically enabled. The resulting binaries will
6218      autodetect the card and use it if present.
6219      [Ben Laurie and Compaq Inc.]
6220
6221   *) Work around for Netscape hang bug. This sends certificate request
6222      and server done in one record. Since this is perfectly legal in the
6223      SSL/TLS protocol it isn't a "bug" option and is on by default. See
6224      the bugs/SSLv3 entry for more info.
6225      [Steve Henson]
6226
6227   *) HP-UX tune-up: new unified configs, HP C compiler bug workaround.
6228      [Andy Polyakov]
6229
6230   *) Add -rand argument to smime and pkcs12 applications and read/write
6231      of seed file.
6232      [Steve Henson]
6233
6234   *) New 'passwd' tool for crypt(3) and apr1 password hashes.
6235      [Bodo Moeller]
6236
6237   *) Add command line password options to the remaining applications.
6238      [Steve Henson]
6239
6240   *) Bug fix for BN_div_recp() for numerators with an even number of
6241      bits.
6242      [Ulf Möller]
6243
6244   *) More tests in bntest.c, and changed test_bn output.
6245      [Ulf Möller]
6246
6247   *) ./config recognizes MacOS X now.
6248      [Andy Polyakov]
6249
6250   *) Bug fix for BN_div() when the first words of num and divsor are
6251      equal (it gave wrong results if (rem=(n1-q*d0)&BN_MASK2) < d0).
6252      [Ulf Möller]
6253
6254   *) Add support for various broken PKCS#8 formats, and command line
6255      options to produce them.
6256      [Steve Henson]
6257
6258   *) New functions BN_CTX_start(), BN_CTX_get() and BT_CTX_end() to
6259      get temporary BIGNUMs from a BN_CTX.
6260      [Ulf Möller]
6261
6262   *) Correct return values in BN_mod_exp_mont() and BN_mod_exp2_mont()
6263      for p == 0.
6264      [Ulf Möller]
6265
6266   *) Change the SSLeay_add_all_*() functions to OpenSSL_add_all_*() and
6267      include a #define from the old name to the new. The original intent
6268      was that statically linked binaries could for example just call
6269      SSLeay_add_all_ciphers() to just add ciphers to the table and not
6270      link with digests. This never worked becayse SSLeay_add_all_digests()
6271      and SSLeay_add_all_ciphers() were in the same source file so calling
6272      one would link with the other. They are now in separate source files.
6273      [Steve Henson]
6274
6275   *) Add a new -notext option to 'ca' and a -pubkey option to 'spkac'.
6276      [Steve Henson]
6277
6278   *) Use a less unusual form of the Miller-Rabin primality test (it used
6279      a binary algorithm for exponentiation integrated into the Miller-Rabin
6280      loop, our standard modexp algorithms are faster).
6281      [Bodo Moeller]
6282
6283   *) Support for the EBCDIC character set completed.
6284      [Martin Kraemer <Martin.Kraemer@Mch.SNI.De>]
6285
6286   *) Source code cleanups: use const where appropriate, eliminate casts,
6287      use void * instead of char * in lhash.
6288      [Ulf Möller] 
6289
6290   *) Bugfix: ssl3_send_server_key_exchange was not restartable
6291      (the state was not changed to SSL3_ST_SW_KEY_EXCH_B, and because of
6292      this the server could overwrite ephemeral keys that the client
6293      has already seen).
6294      [Bodo Moeller]
6295
6296   *) Turn DSA_is_prime into a macro that calls BN_is_prime,
6297      using 50 iterations of the Rabin-Miller test.
6298
6299      DSA_generate_parameters now uses BN_is_prime_fasttest (with 50
6300      iterations of the Rabin-Miller test as required by the appendix
6301      to FIPS PUB 186[-1]) instead of DSA_is_prime.
6302      As BN_is_prime_fasttest includes trial division, DSA parameter
6303      generation becomes much faster.
6304
6305      This implies a change for the callback functions in DSA_is_prime
6306      and DSA_generate_parameters: The callback function is called once
6307      for each positive witness in the Rabin-Miller test, not just
6308      occasionally in the inner loop; and the parameters to the
6309      callback function now provide an iteration count for the outer
6310      loop rather than for the current invocation of the inner loop.
6311      DSA_generate_parameters additionally can call the callback
6312      function with an 'iteration count' of -1, meaning that a
6313      candidate has passed the trial division test (when q is generated 
6314      from an application-provided seed, trial division is skipped).
6315      [Bodo Moeller]
6316
6317   *) New function BN_is_prime_fasttest that optionally does trial
6318      division before starting the Rabin-Miller test and has
6319      an additional BN_CTX * argument (whereas BN_is_prime always
6320      has to allocate at least one BN_CTX).
6321      'callback(1, -1, cb_arg)' is called when a number has passed the
6322      trial division stage.
6323      [Bodo Moeller]
6324
6325   *) Fix for bug in CRL encoding. The validity dates weren't being handled
6326      as ASN1_TIME.
6327      [Steve Henson]
6328
6329   *) New -pkcs12 option to CA.pl script to write out a PKCS#12 file.
6330      [Steve Henson]
6331
6332   *) New function BN_pseudo_rand().
6333      [Ulf Möller]
6334
6335   *) Clean up BN_mod_mul_montgomery(): replace the broken (and unreadable)
6336      bignum version of BN_from_montgomery() with the working code from
6337      SSLeay 0.9.0 (the word based version is faster anyway), and clean up
6338      the comments.
6339      [Ulf Möller]
6340
6341   *) Avoid a race condition in s2_clnt.c (function get_server_hello) that
6342      made it impossible to use the same SSL_SESSION data structure in
6343      SSL2 clients in multiple threads.
6344      [Bodo Moeller]
6345
6346   *) The return value of RAND_load_file() no longer counts bytes obtained
6347      by stat().  RAND_load_file(..., -1) is new and uses the complete file
6348      to seed the PRNG (previously an explicit byte count was required).
6349      [Ulf Möller, Bodo Möller]
6350
6351   *) Clean up CRYPTO_EX_DATA functions, some of these didn't have prototypes
6352      used (char *) instead of (void *) and had casts all over the place.
6353      [Steve Henson]
6354
6355   *) Make BN_generate_prime() return NULL on error if ret!=NULL.
6356      [Ulf Möller]
6357
6358   *) Retain source code compatibility for BN_prime_checks macro:
6359      BN_is_prime(..., BN_prime_checks, ...) now uses
6360      BN_prime_checks_for_size to determine the appropriate number of
6361      Rabin-Miller iterations.
6362      [Ulf Möller]
6363
6364   *) Diffie-Hellman uses "safe" primes: DH_check() return code renamed to
6365      DH_CHECK_P_NOT_SAFE_PRIME.
6366      (Check if this is true? OpenPGP calls them "strong".)
6367      [Ulf Möller]
6368
6369   *) Merge the functionality of "dh" and "gendh" programs into a new program
6370      "dhparam". The old programs are retained for now but will handle DH keys
6371      (instead of parameters) in future.
6372      [Steve Henson]
6373
6374   *) Make the ciphers, s_server and s_client programs check the return values
6375      when a new cipher list is set.
6376      [Steve Henson]
6377
6378   *) Enhance the SSL/TLS cipher mechanism to correctly handle the TLS 56bit
6379      ciphers. Before when the 56bit ciphers were enabled the sorting was
6380      wrong.
6381
6382      The syntax for the cipher sorting has been extended to support sorting by
6383      cipher-strength (using the strength_bits hard coded in the tables).
6384      The new command is "@STRENGTH" (see also doc/apps/ciphers.pod).
6385
6386      Fix a bug in the cipher-command parser: when supplying a cipher command
6387      string with an "undefined" symbol (neither command nor alphanumeric
6388      [A-Za-z0-9], ssl_set_cipher_list used to hang in an endless loop. Now
6389      an error is flagged.
6390
6391      Due to the strength-sorting extension, the code of the
6392      ssl_create_cipher_list() function was completely rearranged. I hope that
6393      the readability was also increased :-)
6394      [Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>]
6395
6396   *) Minor change to 'x509' utility. The -CAcreateserial option now uses 1
6397      for the first serial number and places 2 in the serial number file. This
6398      avoids problems when the root CA is created with serial number zero and
6399      the first user certificate has the same issuer name and serial number
6400      as the root CA.
6401      [Steve Henson]
6402
6403   *) Fixes to X509_ATTRIBUTE utilities, change the 'req' program so it uses
6404      the new code. Add documentation for this stuff.
6405      [Steve Henson]
6406
6407   *) Changes to X509_ATTRIBUTE utilities. These have been renamed from
6408      X509_*() to X509at_*() on the grounds that they don't handle X509
6409      structures and behave in an analagous way to the X509v3 functions:
6410      they shouldn't be called directly but wrapper functions should be used
6411      instead.
6412
6413      So we also now have some wrapper functions that call the X509at functions
6414      when passed certificate requests. (TO DO: similar things can be done with
6415      PKCS#7 signed and unsigned attributes, PKCS#12 attributes and a few other
6416      things. Some of these need some d2i or i2d and print functionality
6417      because they handle more complex structures.)
6418      [Steve Henson]
6419
6420   *) Add missing #ifndefs that caused missing symbols when building libssl
6421      as a shared library without RSA.  Use #ifndef NO_SSL2 instead of
6422      NO_RSA in ssl/s2*.c. 
6423      [Kris Kennaway <kris@hub.freebsd.org>, modified by Ulf Möller]
6424
6425   *) Precautions against using the PRNG uninitialized: RAND_bytes() now
6426      has a return value which indicates the quality of the random data
6427      (1 = ok, 0 = not seeded).  Also an error is recorded on the thread's
6428      error queue. New function RAND_pseudo_bytes() generates output that is
6429      guaranteed to be unique but not unpredictable. RAND_add is like
6430      RAND_seed, but takes an extra argument for an entropy estimate
6431      (RAND_seed always assumes full entropy).
6432      [Ulf Möller]
6433
6434   *) Do more iterations of Rabin-Miller probable prime test (specifically,
6435      3 for 1024-bit primes, 6 for 512-bit primes, 12 for 256-bit primes
6436      instead of only 2 for all lengths; see BN_prime_checks_for_size definition
6437      in crypto/bn/bn_prime.c for the complete table).  This guarantees a
6438      false-positive rate of at most 2^-80 for random input.
6439      [Bodo Moeller]
6440
6441   *) Rewrite ssl3_read_n (ssl/s3_pkt.c) avoiding a couple of bugs.
6442      [Bodo Moeller]
6443
6444   *) New function X509_CTX_rget_chain() (renamed to X509_CTX_get1_chain
6445      in the 0.9.5 release), this returns the chain
6446      from an X509_CTX structure with a dup of the stack and all
6447      the X509 reference counts upped: so the stack will exist
6448      after X509_CTX_cleanup() has been called. Modify pkcs12.c
6449      to use this.
6450
6451      Also make SSL_SESSION_print() print out the verify return
6452      code.
6453      [Steve Henson]
6454
6455   *) Add manpage for the pkcs12 command. Also change the default
6456      behaviour so MAC iteration counts are used unless the new
6457      -nomaciter option is used. This improves file security and
6458      only older versions of MSIE (4.0 for example) need it.
6459      [Steve Henson]
6460
6461   *) Honor the no-xxx Configure options when creating .DEF files.
6462      [Ulf Möller]
6463
6464   *) Add PKCS#10 attributes to field table: challengePassword, 
6465      unstructuredName and unstructuredAddress. These are taken from
6466      draft PKCS#9 v2.0 but are compatible with v1.2 provided no 
6467      international characters are used.
6468
6469      More changes to X509_ATTRIBUTE code: allow the setting of types
6470      based on strings. Remove the 'loc' parameter when adding
6471      attributes because these will be a SET OF encoding which is sorted
6472      in ASN1 order.
6473      [Steve Henson]
6474
6475   *) Initial changes to the 'req' utility to allow request generation
6476      automation. This will allow an application to just generate a template
6477      file containing all the field values and have req construct the
6478      request.
6479
6480      Initial support for X509_ATTRIBUTE handling. Stacks of these are
6481      used all over the place including certificate requests and PKCS#7
6482      structures. They are currently handled manually where necessary with
6483      some primitive wrappers for PKCS#7. The new functions behave in a
6484      manner analogous to the X509 extension functions: they allow
6485      attributes to be looked up by NID and added.
6486
6487      Later something similar to the X509V3 code would be desirable to
6488      automatically handle the encoding, decoding and printing of the
6489      more complex types. The string types like challengePassword can
6490      be handled by the string table functions.
6491
6492      Also modified the multi byte string table handling. Now there is
6493      a 'global mask' which masks out certain types. The table itself
6494      can use the flag STABLE_NO_MASK to ignore the mask setting: this
6495      is useful when for example there is only one permissible type
6496      (as in countryName) and using the mask might result in no valid
6497      types at all.
6498      [Steve Henson]
6499
6500   *) Clean up 'Finished' handling, and add functions SSL_get_finished and
6501      SSL_get_peer_finished to allow applications to obtain the latest
6502      Finished messages sent to the peer or expected from the peer,
6503      respectively.  (SSL_get_peer_finished is usually the Finished message
6504      actually received from the peer, otherwise the protocol will be aborted.)
6505
6506      As the Finished message are message digests of the complete handshake
6507      (with a total of 192 bits for TLS 1.0 and more for SSL 3.0), they can
6508      be used for external authentication procedures when the authentication
6509      provided by SSL/TLS is not desired or is not enough.
6510      [Bodo Moeller]
6511
6512   *) Enhanced support for Alpha Linux is added. Now ./config checks if
6513      the host supports BWX extension and if Compaq C is present on the
6514      $PATH. Just exploiting of the BWX extension results in 20-30%
6515      performance kick for some algorithms, e.g. DES and RC4 to mention
6516      a couple. Compaq C in turn generates ~20% faster code for MD5 and
6517      SHA1.
6518      [Andy Polyakov]
6519
6520   *) Add support for MS "fast SGC". This is arguably a violation of the
6521      SSL3/TLS protocol. Netscape SGC does two handshakes: the first with
6522      weak crypto and after checking the certificate is SGC a second one
6523      with strong crypto. MS SGC stops the first handshake after receiving
6524      the server certificate message and sends a second client hello. Since
6525      a server will typically do all the time consuming operations before
6526      expecting any further messages from the client (server key exchange
6527      is the most expensive) there is little difference between the two.
6528
6529      To get OpenSSL to support MS SGC we have to permit a second client
6530      hello message after we have sent server done. In addition we have to
6531      reset the MAC if we do get this second client hello.
6532      [Steve Henson]
6533
6534   *) Add a function 'd2i_AutoPrivateKey()' this will automatically decide
6535      if a DER encoded private key is RSA or DSA traditional format. Changed
6536      d2i_PrivateKey_bio() to use it. This is only needed for the "traditional"
6537      format DER encoded private key. Newer code should use PKCS#8 format which
6538      has the key type encoded in the ASN1 structure. Added DER private key
6539      support to pkcs8 application.
6540      [Steve Henson]
6541
6542   *) SSL 3/TLS 1 servers now don't request certificates when an anonymous
6543      ciphersuites has been selected (as required by the SSL 3/TLS 1
6544      specifications).  Exception: When SSL_VERIFY_FAIL_IF_NO_PEER_CERT
6545      is set, we interpret this as a request to violate the specification
6546      (the worst that can happen is a handshake failure, and 'correct'
6547      behaviour would result in a handshake failure anyway).
6548      [Bodo Moeller]
6549
6550   *) In SSL_CTX_add_session, take into account that there might be multiple
6551      SSL_SESSION structures with the same session ID (e.g. when two threads
6552      concurrently obtain them from an external cache).
6553      The internal cache can handle only one SSL_SESSION with a given ID,
6554      so if there's a conflict, we now throw out the old one to achieve
6555      consistency.
6556      [Bodo Moeller]
6557
6558   *) Add OIDs for idea and blowfish in CBC mode. This will allow both
6559      to be used in PKCS#5 v2.0 and S/MIME.  Also add checking to
6560      some routines that use cipher OIDs: some ciphers do not have OIDs
6561      defined and so they cannot be used for S/MIME and PKCS#5 v2.0 for
6562      example.
6563      [Steve Henson]
6564
6565   *) Simplify the trust setting structure and code. Now we just have
6566      two sequences of OIDs for trusted and rejected settings. These will
6567      typically have values the same as the extended key usage extension
6568      and any application specific purposes.
6569
6570      The trust checking code now has a default behaviour: it will just
6571      check for an object with the same NID as the passed id. Functions can
6572      be provided to override either the default behaviour or the behaviour
6573      for a given id. SSL client, server and email already have functions
6574      in place for compatibility: they check the NID and also return "trusted"
6575      if the certificate is self signed.
6576      [Steve Henson]
6577
6578   *) Add d2i,i2d bio/fp functions for PrivateKey: these convert the
6579      traditional format into an EVP_PKEY structure.
6580      [Steve Henson]
6581
6582   *) Add a password callback function PEM_cb() which either prompts for
6583      a password if usr_data is NULL or otherwise assumes it is a null
6584      terminated password. Allow passwords to be passed on command line
6585      environment or config files in a few more utilities.
6586      [Steve Henson]
6587
6588   *) Add a bunch of DER and PEM functions to handle PKCS#8 format private
6589      keys. Add some short names for PKCS#8 PBE algorithms and allow them
6590      to be specified on the command line for the pkcs8 and pkcs12 utilities.
6591      Update documentation.
6592      [Steve Henson]
6593
6594   *) Support for ASN1 "NULL" type. This could be handled before by using
6595      ASN1_TYPE but there wasn't any function that would try to read a NULL
6596      and produce an error if it couldn't. For compatibility we also have
6597      ASN1_NULL_new() and ASN1_NULL_free() functions but these are faked and
6598      don't allocate anything because they don't need to.
6599      [Steve Henson]
6600
6601   *) Initial support for MacOS is now provided. Examine INSTALL.MacOS
6602      for details.
6603      [Andy Polyakov, Roy Woods <roy@centicsystems.ca>]
6604
6605   *) Rebuild of the memory allocation routines used by OpenSSL code and
6606      possibly others as well.  The purpose is to make an interface that
6607      provide hooks so anyone can build a separate set of allocation and
6608      deallocation routines to be used by OpenSSL, for example memory
6609      pool implementations, or something else, which was previously hard
6610      since Malloc(), Realloc() and Free() were defined as macros having
6611      the values malloc, realloc and free, respectively (except for Win32
6612      compilations).  The same is provided for memory debugging code.
6613      OpenSSL already comes with functionality to find memory leaks, but
6614      this gives people a chance to debug other memory problems.
6615
6616      With these changes, a new set of functions and macros have appeared:
6617
6618        CRYPTO_set_mem_debug_functions()         [F]
6619        CRYPTO_get_mem_debug_functions()         [F]
6620        CRYPTO_dbg_set_options()                 [F]
6621        CRYPTO_dbg_get_options()                 [F]
6622        CRYPTO_malloc_debug_init()               [M]
6623
6624      The memory debug functions are NULL by default, unless the library
6625      is compiled with CRYPTO_MDEBUG or friends is defined.  If someone
6626      wants to debug memory anyway, CRYPTO_malloc_debug_init() (which
6627      gives the standard debugging functions that come with OpenSSL) or
6628      CRYPTO_set_mem_debug_functions() (tells OpenSSL to use functions
6629      provided by the library user) must be used.  When the standard
6630      debugging functions are used, CRYPTO_dbg_set_options can be used to
6631      request additional information:
6632      CRYPTO_dbg_set_options(V_CYRPTO_MDEBUG_xxx) corresponds to setting
6633      the CRYPTO_MDEBUG_xxx macro when compiling the library.   
6634
6635      Also, things like CRYPTO_set_mem_functions will always give the
6636      expected result (the new set of functions is used for allocation
6637      and deallocation) at all times, regardless of platform and compiler
6638      options.
6639
6640      To finish it up, some functions that were never use in any other
6641      way than through macros have a new API and new semantic:
6642
6643        CRYPTO_dbg_malloc()
6644        CRYPTO_dbg_realloc()
6645        CRYPTO_dbg_free()
6646
6647      All macros of value have retained their old syntax.
6648      [Richard Levitte and Bodo Moeller]
6649
6650   *) Some S/MIME fixes. The OID for SMIMECapabilities was wrong, the
6651      ordering of SMIMECapabilities wasn't in "strength order" and there
6652      was a missing NULL in the AlgorithmIdentifier for the SHA1 signature
6653      algorithm.
6654      [Steve Henson]
6655
6656   *) Some ASN1 types with illegal zero length encoding (INTEGER,
6657      ENUMERATED and OBJECT IDENTIFIER) choked the ASN1 routines.
6658      [Frans Heymans <fheymans@isaserver.be>, modified by Steve Henson]
6659
6660   *) Merge in my S/MIME library for OpenSSL. This provides a simple
6661      S/MIME API on top of the PKCS#7 code, a MIME parser (with enough
6662      functionality to handle multipart/signed properly) and a utility
6663      called 'smime' to call all this stuff. This is based on code I
6664      originally wrote for Celo who have kindly allowed it to be
6665      included in OpenSSL.
6666      [Steve Henson]
6667
6668   *) Add variants des_set_key_checked and des_set_key_unchecked of
6669      des_set_key (aka des_key_sched).  Global variable des_check_key
6670      decides which of these is called by des_set_key; this way
6671      des_check_key behaves as it always did, but applications and
6672      the library itself, which was buggy for des_check_key == 1,
6673      have a cleaner way to pick the version they need.
6674      [Bodo Moeller]
6675
6676   *) New function PKCS12_newpass() which changes the password of a
6677      PKCS12 structure.
6678      [Steve Henson]
6679
6680   *) Modify X509_TRUST and X509_PURPOSE so it also uses a static and
6681      dynamic mix. In both cases the ids can be used as an index into the
6682      table. Also modified the X509_TRUST_add() and X509_PURPOSE_add()
6683      functions so they accept a list of the field values and the
6684      application doesn't need to directly manipulate the X509_TRUST
6685      structure.
6686      [Steve Henson]
6687
6688   *) Modify the ASN1_STRING_TABLE stuff so it also uses bsearch and doesn't
6689      need initialising.
6690      [Steve Henson]
6691
6692   *) Modify the way the V3 extension code looks up extensions. This now
6693      works in a similar way to the object code: we have some "standard"
6694      extensions in a static table which is searched with OBJ_bsearch()
6695      and the application can add dynamic ones if needed. The file
6696      crypto/x509v3/ext_dat.h now has the info: this file needs to be
6697      updated whenever a new extension is added to the core code and kept
6698      in ext_nid order. There is a simple program 'tabtest.c' which checks
6699      this. New extensions are not added too often so this file can readily
6700      be maintained manually.
6701
6702      There are two big advantages in doing things this way. The extensions
6703      can be looked up immediately and no longer need to be "added" using
6704      X509V3_add_standard_extensions(): this function now does nothing.
6705      [Side note: I get *lots* of email saying the extension code doesn't
6706       work because people forget to call this function]
6707      Also no dynamic allocation is done unless new extensions are added:
6708      so if we don't add custom extensions there is no need to call
6709      X509V3_EXT_cleanup().
6710      [Steve Henson]
6711
6712   *) Modify enc utility's salting as follows: make salting the default. Add a
6713      magic header, so unsalted files fail gracefully instead of just decrypting
6714      to garbage. This is because not salting is a big security hole, so people
6715      should be discouraged from doing it.
6716      [Ben Laurie]
6717
6718   *) Fixes and enhancements to the 'x509' utility. It allowed a message
6719      digest to be passed on the command line but it only used this
6720      parameter when signing a certificate. Modified so all relevant
6721      operations are affected by the digest parameter including the
6722      -fingerprint and -x509toreq options. Also -x509toreq choked if a
6723      DSA key was used because it didn't fix the digest.
6724      [Steve Henson]
6725
6726   *) Initial certificate chain verify code. Currently tests the untrusted
6727      certificates for consistency with the verify purpose (which is set
6728      when the X509_STORE_CTX structure is set up) and checks the pathlength.
6729
6730      There is a NO_CHAIN_VERIFY compilation option to keep the old behaviour:
6731      this is because it will reject chains with invalid extensions whereas
6732      every previous version of OpenSSL and SSLeay made no checks at all.
6733
6734      Trust code: checks the root CA for the relevant trust settings. Trust
6735      settings have an initial value consistent with the verify purpose: e.g.
6736      if the verify purpose is for SSL client use it expects the CA to be
6737      trusted for SSL client use. However the default value can be changed to
6738      permit custom trust settings: one example of this would be to only trust
6739      certificates from a specific "secure" set of CAs.
6740
6741      Also added X509_STORE_CTX_new() and X509_STORE_CTX_free() functions
6742      which should be used for version portability: especially since the
6743      verify structure is likely to change more often now.
6744
6745      SSL integration. Add purpose and trust to SSL_CTX and SSL and functions
6746      to set them. If not set then assume SSL clients will verify SSL servers
6747      and vice versa.
6748
6749      Two new options to the verify program: -untrusted allows a set of
6750      untrusted certificates to be passed in and -purpose which sets the
6751      intended purpose of the certificate. If a purpose is set then the
6752      new chain verify code is used to check extension consistency.
6753      [Steve Henson]
6754
6755   *) Support for the authority information access extension.
6756      [Steve Henson]
6757
6758   *) Modify RSA and DSA PEM read routines to transparently handle
6759      PKCS#8 format private keys. New *_PUBKEY_* functions that handle
6760      public keys in a format compatible with certificate
6761      SubjectPublicKeyInfo structures. Unfortunately there were already
6762      functions called *_PublicKey_* which used various odd formats so
6763      these are retained for compatibility: however the DSA variants were
6764      never in a public release so they have been deleted. Changed dsa/rsa
6765      utilities to handle the new format: note no releases ever handled public
6766      keys so we should be OK.
6767
6768      The primary motivation for this change is to avoid the same fiasco
6769      that dogs private keys: there are several incompatible private key
6770      formats some of which are standard and some OpenSSL specific and
6771      require various evil hacks to allow partial transparent handling and
6772      even then it doesn't work with DER formats. Given the option anything
6773      other than PKCS#8 should be dumped: but the other formats have to
6774      stay in the name of compatibility.
6775
6776      With public keys and the benefit of hindsight one standard format 
6777      is used which works with EVP_PKEY, RSA or DSA structures: though
6778      it clearly returns an error if you try to read the wrong kind of key.
6779
6780      Added a -pubkey option to the 'x509' utility to output the public key.
6781      Also rename the EVP_PKEY_get_*() to EVP_PKEY_rget_*()
6782      (renamed to EVP_PKEY_get1_*() in the OpenSSL 0.9.5 release) and add
6783      EVP_PKEY_rset_*() functions (renamed to EVP_PKEY_set1_*())
6784      that do the same as the EVP_PKEY_assign_*() except they up the
6785      reference count of the added key (they don't "swallow" the
6786      supplied key).
6787      [Steve Henson]
6788
6789   *) Fixes to crypto/x509/by_file.c the code to read in certificates and
6790      CRLs would fail if the file contained no certificates or no CRLs:
6791      added a new function to read in both types and return the number
6792      read: this means that if none are read it will be an error. The
6793      DER versions of the certificate and CRL reader would always fail
6794      because it isn't possible to mix certificates and CRLs in DER format
6795      without choking one or the other routine. Changed this to just read
6796      a certificate: this is the best we can do. Also modified the code
6797      in apps/verify.c to take notice of return codes: it was previously
6798      attempting to read in certificates from NULL pointers and ignoring
6799      any errors: this is one reason why the cert and CRL reader seemed
6800      to work. It doesn't check return codes from the default certificate
6801      routines: these may well fail if the certificates aren't installed.
6802      [Steve Henson]
6803
6804   *) Code to support otherName option in GeneralName.
6805      [Steve Henson]
6806
6807   *) First update to verify code. Change the verify utility
6808      so it warns if it is passed a self signed certificate:
6809      for consistency with the normal behaviour. X509_verify
6810      has been modified to it will now verify a self signed
6811      certificate if *exactly* the same certificate appears
6812      in the store: it was previously impossible to trust a
6813      single self signed certificate. This means that:
6814      openssl verify ss.pem
6815      now gives a warning about a self signed certificate but
6816      openssl verify -CAfile ss.pem ss.pem
6817      is OK.
6818      [Steve Henson]
6819
6820   *) For servers, store verify_result in SSL_SESSION data structure
6821      (and add it to external session representation).
6822      This is needed when client certificate verifications fails,
6823      but an application-provided verification callback (set by
6824      SSL_CTX_set_cert_verify_callback) allows accepting the session
6825      anyway (i.e. leaves x509_store_ctx->error != X509_V_OK
6826      but returns 1): When the session is reused, we have to set
6827      ssl->verify_result to the appropriate error code to avoid
6828      security holes.
6829      [Bodo Moeller, problem pointed out by Lutz Jaenicke]
6830
6831   *) Fix a bug in the new PKCS#7 code: it didn't consider the
6832      case in PKCS7_dataInit() where the signed PKCS7 structure
6833      didn't contain any existing data because it was being created.
6834      [Po-Cheng Chen <pocheng@nst.com.tw>, slightly modified by Steve Henson]
6835
6836   *) Add a salt to the key derivation routines in enc.c. This
6837      forms the first 8 bytes of the encrypted file. Also add a
6838      -S option to allow a salt to be input on the command line.
6839      [Steve Henson]
6840
6841   *) New function X509_cmp(). Oddly enough there wasn't a function
6842      to compare two certificates. We do this by working out the SHA1
6843      hash and comparing that. X509_cmp() will be needed by the trust
6844      code.
6845      [Steve Henson]
6846
6847   *) SSL_get1_session() is like SSL_get_session(), but increments
6848      the reference count in the SSL_SESSION returned.
6849      [Geoff Thorpe <geoff@eu.c2.net>]
6850
6851   *) Fix for 'req': it was adding a null to request attributes.
6852      Also change the X509_LOOKUP and X509_INFO code to handle
6853      certificate auxiliary information.
6854      [Steve Henson]
6855
6856   *) Add support for 40 and 64 bit RC2 and RC4 algorithms: document
6857      the 'enc' command.
6858      [Steve Henson]
6859
6860   *) Add the possibility to add extra information to the memory leak
6861      detecting output, to form tracebacks, showing from where each
6862      allocation was originated: CRYPTO_push_info("constant string") adds
6863      the string plus current file name and line number to a per-thread
6864      stack, CRYPTO_pop_info() does the obvious, CRYPTO_remove_all_info()
6865      is like calling CYRPTO_pop_info() until the stack is empty.
6866      Also updated memory leak detection code to be multi-thread-safe.
6867      [Richard Levitte]
6868
6869   *) Add options -text and -noout to pkcs7 utility and delete the
6870      encryption options which never did anything. Update docs.
6871      [Steve Henson]
6872
6873   *) Add options to some of the utilities to allow the pass phrase
6874      to be included on either the command line (not recommended on
6875      OSes like Unix) or read from the environment. Update the
6876      manpages and fix a few bugs.
6877      [Steve Henson]
6878
6879   *) Add a few manpages for some of the openssl commands.
6880      [Steve Henson]
6881
6882   *) Fix the -revoke option in ca. It was freeing up memory twice,
6883      leaking and not finding already revoked certificates.
6884      [Steve Henson]
6885
6886   *) Extensive changes to support certificate auxiliary information.
6887      This involves the use of X509_CERT_AUX structure and X509_AUX
6888      functions. An X509_AUX function such as PEM_read_X509_AUX()
6889      can still read in a certificate file in the usual way but it
6890      will also read in any additional "auxiliary information". By
6891      doing things this way a fair degree of compatibility can be
6892      retained: existing certificates can have this information added
6893      using the new 'x509' options. 
6894
6895      Current auxiliary information includes an "alias" and some trust
6896      settings. The trust settings will ultimately be used in enhanced
6897      certificate chain verification routines: currently a certificate
6898      can only be trusted if it is self signed and then it is trusted
6899      for all purposes.
6900      [Steve Henson]
6901
6902   *) Fix assembler for Alpha (tested only on DEC OSF not Linux or *BSD).
6903      The problem was that one of the replacement routines had not been working
6904      since SSLeay releases.  For now the offending routine has been replaced
6905      with non-optimised assembler.  Even so, this now gives around 95%
6906      performance improvement for 1024 bit RSA signs.
6907      [Mark Cox]
6908
6909   *) Hack to fix PKCS#7 decryption when used with some unorthodox RC2 
6910      handling. Most clients have the effective key size in bits equal to
6911      the key length in bits: so a 40 bit RC2 key uses a 40 bit (5 byte) key.
6912      A few however don't do this and instead use the size of the decrypted key
6913      to determine the RC2 key length and the AlgorithmIdentifier to determine
6914      the effective key length. In this case the effective key length can still
6915      be 40 bits but the key length can be 168 bits for example. This is fixed
6916      by manually forcing an RC2 key into the EVP_PKEY structure because the
6917      EVP code can't currently handle unusual RC2 key sizes: it always assumes
6918      the key length and effective key length are equal.
6919      [Steve Henson]
6920
6921   *) Add a bunch of functions that should simplify the creation of 
6922      X509_NAME structures. Now you should be able to do:
6923      X509_NAME_add_entry_by_txt(nm, "CN", MBSTRING_ASC, "Steve", -1, -1, 0);
6924      and have it automatically work out the correct field type and fill in
6925      the structures. The more adventurous can try:
6926      X509_NAME_add_entry_by_txt(nm, field, MBSTRING_UTF8, str, -1, -1, 0);
6927      and it will (hopefully) work out the correct multibyte encoding.
6928      [Steve Henson]
6929
6930   *) Change the 'req' utility to use the new field handling and multibyte
6931      copy routines. Before the DN field creation was handled in an ad hoc
6932      way in req, ca, and x509 which was rather broken and didn't support
6933      BMPStrings or UTF8Strings. Since some software doesn't implement
6934      BMPStrings or UTF8Strings yet, they can be enabled using the config file
6935      using the dirstring_type option. See the new comment in the default
6936      openssl.cnf for more info.
6937      [Steve Henson]
6938
6939   *) Make crypto/rand/md_rand.c more robust:
6940      - Assure unique random numbers after fork().
6941      - Make sure that concurrent threads access the global counter and
6942        md serializably so that we never lose entropy in them
6943        or use exactly the same state in multiple threads.
6944        Access to the large state is not always serializable because
6945        the additional locking could be a performance killer, and
6946        md should be large enough anyway.
6947      [Bodo Moeller]
6948
6949   *) New file apps/app_rand.c with commonly needed functionality
6950      for handling the random seed file.
6951
6952      Use the random seed file in some applications that previously did not:
6953           ca,
6954           dsaparam -genkey (which also ignored its '-rand' option), 
6955           s_client,
6956           s_server,
6957           x509 (when signing).
6958      Except on systems with /dev/urandom, it is crucial to have a random
6959      seed file at least for key creation, DSA signing, and for DH exchanges;
6960      for RSA signatures we could do without one.
6961
6962      gendh and gendsa (unlike genrsa) used to read only the first byte
6963      of each file listed in the '-rand' option.  The function as previously
6964      found in genrsa is now in app_rand.c and is used by all programs
6965      that support '-rand'.
6966      [Bodo Moeller]
6967
6968   *) In RAND_write_file, use mode 0600 for creating files;
6969      don't just chmod when it may be too late.
6970      [Bodo Moeller]
6971
6972   *) Report an error from X509_STORE_load_locations
6973      when X509_LOOKUP_load_file or X509_LOOKUP_add_dir failed.
6974      [Bill Perry]
6975
6976   *) New function ASN1_mbstring_copy() this copies a string in either
6977      ASCII, Unicode, Universal (4 bytes per character) or UTF8 format
6978      into an ASN1_STRING type. A mask of permissible types is passed
6979      and it chooses the "minimal" type to use or an error if not type
6980      is suitable.
6981      [Steve Henson]
6982
6983   *) Add function equivalents to the various macros in asn1.h. The old
6984      macros are retained with an M_ prefix. Code inside the library can
6985      use the M_ macros. External code (including the openssl utility)
6986      should *NOT* in order to be "shared library friendly".
6987      [Steve Henson]
6988
6989   *) Add various functions that can check a certificate's extensions
6990      to see if it usable for various purposes such as SSL client,
6991      server or S/MIME and CAs of these types. This is currently 
6992      VERY EXPERIMENTAL but will ultimately be used for certificate chain
6993      verification. Also added a -purpose flag to x509 utility to
6994      print out all the purposes.
6995      [Steve Henson]
6996
6997   *) Add a CRYPTO_EX_DATA to X509 certificate structure and associated
6998      functions.
6999      [Steve Henson]
7000
7001   *) New X509V3_{X509,CRL,REVOKED}_get_d2i() functions. These will search
7002      for, obtain and decode and extension and obtain its critical flag.
7003      This allows all the necessary extension code to be handled in a
7004      single function call.
7005      [Steve Henson]
7006
7007   *) RC4 tune-up featuring 30-40% performance improvement on most RISC
7008      platforms. See crypto/rc4/rc4_enc.c for further details.
7009      [Andy Polyakov]
7010
7011   *) New -noout option to asn1parse. This causes no output to be produced
7012      its main use is when combined with -strparse and -out to extract data
7013      from a file (which may not be in ASN.1 format).
7014      [Steve Henson]
7015
7016   *) Fix for pkcs12 program. It was hashing an invalid certificate pointer
7017      when producing the local key id.
7018      [Richard Levitte <levitte@stacken.kth.se>]
7019
7020   *) New option -dhparam in s_server. This allows a DH parameter file to be
7021      stated explicitly. If it is not stated then it tries the first server
7022      certificate file. The previous behaviour hard coded the filename
7023      "server.pem".
7024      [Steve Henson]
7025
7026   *) Add -pubin and -pubout options to the rsa and dsa commands. These allow
7027      a public key to be input or output. For example:
7028      openssl rsa -in key.pem -pubout -out pubkey.pem
7029      Also added necessary DSA public key functions to handle this.
7030      [Steve Henson]
7031
7032   *) Fix so PKCS7_dataVerify() doesn't crash if no certificates are contained
7033      in the message. This was handled by allowing
7034      X509_find_by_issuer_and_serial() to tolerate a NULL passed to it.
7035      [Steve Henson, reported by Sampo Kellomaki <sampo@mail.neuronio.pt>]
7036
7037   *) Fix for bug in d2i_ASN1_bytes(): other ASN1 functions add an extra null
7038      to the end of the strings whereas this didn't. This would cause problems
7039      if strings read with d2i_ASN1_bytes() were later modified.
7040      [Steve Henson, reported by Arne Ansper <arne@ats.cyber.ee>]
7041
7042   *) Fix for base64 decode bug. When a base64 bio reads only one line of
7043      data and it contains EOF it will end up returning an error. This is
7044      caused by input 46 bytes long. The cause is due to the way base64
7045      BIOs find the start of base64 encoded data. They do this by trying a
7046      trial decode on each line until they find one that works. When they
7047      do a flag is set and it starts again knowing it can pass all the
7048      data directly through the decoder. Unfortunately it doesn't reset
7049      the context it uses. This means that if EOF is reached an attempt
7050      is made to pass two EOFs through the context and this causes the
7051      resulting error. This can also cause other problems as well. As is
7052      usual with these problems it takes *ages* to find and the fix is
7053      trivial: move one line.
7054      [Steve Henson, reported by ian@uns.ns.ac.yu (Ivan Nejgebauer) ]
7055
7056   *) Ugly workaround to get s_client and s_server working under Windows. The
7057      old code wouldn't work because it needed to select() on sockets and the
7058      tty (for keypresses and to see if data could be written). Win32 only
7059      supports select() on sockets so we select() with a 1s timeout on the
7060      sockets and then see if any characters are waiting to be read, if none
7061      are present then we retry, we also assume we can always write data to
7062      the tty. This isn't nice because the code then blocks until we've
7063      received a complete line of data and it is effectively polling the
7064      keyboard at 1s intervals: however it's quite a bit better than not
7065      working at all :-) A dedicated Windows application might handle this
7066      with an event loop for example.
7067      [Steve Henson]
7068
7069   *) Enhance RSA_METHOD structure. Now there are two extra methods, rsa_sign
7070      and rsa_verify. When the RSA_FLAGS_SIGN_VER option is set these functions
7071      will be called when RSA_sign() and RSA_verify() are used. This is useful
7072      if rsa_pub_dec() and rsa_priv_enc() equivalents are not available.
7073      For this to work properly RSA_public_decrypt() and RSA_private_encrypt()
7074      should *not* be used: RSA_sign() and RSA_verify() must be used instead.
7075      This necessitated the support of an extra signature type NID_md5_sha1
7076      for SSL signatures and modifications to the SSL library to use it instead
7077      of calling RSA_public_decrypt() and RSA_private_encrypt().
7078      [Steve Henson]
7079
7080   *) Add new -verify -CAfile and -CApath options to the crl program, these
7081      will lookup a CRL issuers certificate and verify the signature in a
7082      similar way to the verify program. Tidy up the crl program so it
7083      no longer accesses structures directly. Make the ASN1 CRL parsing a bit
7084      less strict. It will now permit CRL extensions even if it is not
7085      a V2 CRL: this will allow it to tolerate some broken CRLs.
7086      [Steve Henson]
7087
7088   *) Initialize all non-automatic variables each time one of the openssl
7089      sub-programs is started (this is necessary as they may be started
7090      multiple times from the "OpenSSL>" prompt).
7091      [Lennart Bang, Bodo Moeller]
7092
7093   *) Preliminary compilation option RSA_NULL which disables RSA crypto without
7094      removing all other RSA functionality (this is what NO_RSA does). This
7095      is so (for example) those in the US can disable those operations covered
7096      by the RSA patent while allowing storage and parsing of RSA keys and RSA
7097      key generation.
7098      [Steve Henson]
7099
7100   *) Non-copying interface to BIO pairs.
7101      (still largely untested)
7102      [Bodo Moeller]
7103
7104   *) New function ANS1_tag2str() to convert an ASN1 tag to a descriptive
7105      ASCII string. This was handled independently in various places before.
7106      [Steve Henson]
7107
7108   *) New functions UTF8_getc() and UTF8_putc() that parse and generate
7109      UTF8 strings a character at a time.
7110      [Steve Henson]
7111
7112   *) Use client_version from client hello to select the protocol
7113      (s23_srvr.c) and for RSA client key exchange verification
7114      (s3_srvr.c), as required by the SSL 3.0/TLS 1.0 specifications.
7115      [Bodo Moeller]
7116
7117   *) Add various utility functions to handle SPKACs, these were previously
7118      handled by poking round in the structure internals. Added new function
7119      NETSCAPE_SPKI_print() to print out SPKAC and a new utility 'spkac' to
7120      print, verify and generate SPKACs. Based on an original idea from
7121      Massimiliano Pala <madwolf@comune.modena.it> but extensively modified.
7122      [Steve Henson]
7123
7124   *) RIPEMD160 is operational on all platforms and is back in 'make test'.
7125      [Andy Polyakov]
7126
7127   *) Allow the config file extension section to be overwritten on the
7128      command line. Based on an original idea from Massimiliano Pala
7129      <madwolf@comune.modena.it>. The new option is called -extensions
7130      and can be applied to ca, req and x509. Also -reqexts to override
7131      the request extensions in req and -crlexts to override the crl extensions
7132      in ca.
7133      [Steve Henson]
7134
7135   *) Add new feature to the SPKAC handling in ca.  Now you can include
7136      the same field multiple times by preceding it by "XXXX." for example:
7137      1.OU="Unit name 1"
7138      2.OU="Unit name 2"
7139      this is the same syntax as used in the req config file.
7140      [Steve Henson]
7141
7142   *) Allow certificate extensions to be added to certificate requests. These
7143      are specified in a 'req_extensions' option of the req section of the
7144      config file. They can be printed out with the -text option to req but
7145      are otherwise ignored at present.
7146      [Steve Henson]
7147
7148   *) Fix a horrible bug in enc_read() in crypto/evp/bio_enc.c: if the first
7149      data read consists of only the final block it would not decrypted because
7150      EVP_CipherUpdate() would correctly report zero bytes had been decrypted.
7151      A misplaced 'break' also meant the decrypted final block might not be
7152      copied until the next read.
7153      [Steve Henson]
7154
7155   *) Initial support for DH_METHOD. Again based on RSA_METHOD. Also added
7156      a few extra parameters to the DH structure: these will be useful if
7157      for example we want the value of 'q' or implement X9.42 DH.
7158      [Steve Henson]
7159
7160   *) Initial support for DSA_METHOD. This is based on the RSA_METHOD and
7161      provides hooks that allow the default DSA functions or functions on a
7162      "per key" basis to be replaced. This allows hardware acceleration and
7163      hardware key storage to be handled without major modification to the
7164      library. Also added low level modexp hooks and CRYPTO_EX structure and 
7165      associated functions.
7166      [Steve Henson]
7167
7168   *) Add a new flag to memory BIOs, BIO_FLAG_MEM_RDONLY. This marks the BIO
7169      as "read only": it can't be written to and the buffer it points to will
7170      not be freed. Reading from a read only BIO is much more efficient than
7171      a normal memory BIO. This was added because there are several times when
7172      an area of memory needs to be read from a BIO. The previous method was
7173      to create a memory BIO and write the data to it, this results in two
7174      copies of the data and an O(n^2) reading algorithm. There is a new
7175      function BIO_new_mem_buf() which creates a read only memory BIO from
7176      an area of memory. Also modified the PKCS#7 routines to use read only
7177      memory BIOs.
7178      [Steve Henson]
7179
7180   *) Bugfix: ssl23_get_client_hello did not work properly when called in
7181      state SSL23_ST_SR_CLNT_HELLO_B, i.e. when the first 7 bytes of
7182      a SSLv2-compatible client hello for SSLv3 or TLSv1 could be read,
7183      but a retry condition occured while trying to read the rest.
7184      [Bodo Moeller]
7185
7186   *) The PKCS7_ENC_CONTENT_new() function was setting the content type as
7187      NID_pkcs7_encrypted by default: this was wrong since this should almost
7188      always be NID_pkcs7_data. Also modified the PKCS7_set_type() to handle
7189      the encrypted data type: this is a more sensible place to put it and it
7190      allows the PKCS#12 code to be tidied up that duplicated this
7191      functionality.
7192      [Steve Henson]
7193
7194   *) Changed obj_dat.pl script so it takes its input and output files on
7195      the command line. This should avoid shell escape redirection problems
7196      under Win32.
7197      [Steve Henson]
7198
7199   *) Initial support for certificate extension requests, these are included
7200      in things like Xenroll certificate requests. Included functions to allow
7201      extensions to be obtained and added.
7202      [Steve Henson]
7203
7204   *) -crlf option to s_client and s_server for sending newlines as
7205      CRLF (as required by many protocols).
7206      [Bodo Moeller]
7207
7208  Changes between 0.9.3a and 0.9.4  [09 Aug 1999]
7209   
7210   *) Install libRSAglue.a when OpenSSL is built with RSAref.
7211      [Ralf S. Engelschall]
7212
7213   *) A few more ``#ifndef NO_FP_API / #endif'' pairs for consistency.
7214      [Andrija Antonijevic <TheAntony2@bigfoot.com>]
7215
7216   *) Fix -startdate and -enddate (which was missing) arguments to 'ca'
7217      program.
7218      [Steve Henson]
7219
7220   *) New function DSA_dup_DH, which duplicates DSA parameters/keys as
7221      DH parameters/keys (q is lost during that conversion, but the resulting
7222      DH parameters contain its length).
7223
7224      For 1024-bit p, DSA_generate_parameters followed by DSA_dup_DH is
7225      much faster than DH_generate_parameters (which creates parameters
7226      where p = 2*q + 1), and also the smaller q makes DH computations
7227      much more efficient (160-bit exponentiation instead of 1024-bit
7228      exponentiation); so this provides a convenient way to support DHE
7229      ciphersuites in SSL/TLS servers (see ssl/ssltest.c).  It is of
7230      utter importance to use
7231          SSL_CTX_set_options(s_ctx, SSL_OP_SINGLE_DH_USE);
7232      or
7233          SSL_set_options(s_ctx, SSL_OP_SINGLE_DH_USE);
7234      when such DH parameters are used, because otherwise small subgroup
7235      attacks may become possible!
7236      [Bodo Moeller]
7237
7238   *) Avoid memory leak in i2d_DHparams.
7239      [Bodo Moeller]
7240
7241   *) Allow the -k option to be used more than once in the enc program:
7242      this allows the same encrypted message to be read by multiple recipients.
7243      [Steve Henson]
7244
7245   *) New function OBJ_obj2txt(buf, buf_len, a, no_name), this converts
7246      an ASN1_OBJECT to a text string. If the "no_name" parameter is set then
7247      it will always use the numerical form of the OID, even if it has a short
7248      or long name.
7249      [Steve Henson]
7250
7251   *) Added an extra RSA flag: RSA_FLAG_EXT_PKEY. Previously the rsa_mod_exp
7252      method only got called if p,q,dmp1,dmq1,iqmp components were present,
7253      otherwise bn_mod_exp was called. In the case of hardware keys for example
7254      no private key components need be present and it might store extra data
7255      in the RSA structure, which cannot be accessed from bn_mod_exp.
7256      By setting RSA_FLAG_EXT_PKEY rsa_mod_exp will always be called for
7257      private key operations.
7258      [Steve Henson]
7259
7260   *) Added support for SPARC Linux.
7261      [Andy Polyakov]
7262
7263   *) pem_password_cb function type incompatibly changed from
7264           typedef int pem_password_cb(char *buf, int size, int rwflag);
7265      to
7266           ....(char *buf, int size, int rwflag, void *userdata);
7267      so that applications can pass data to their callbacks:
7268      The PEM[_ASN1]_{read,write}... functions and macros now take an
7269      additional void * argument, which is just handed through whenever
7270      the password callback is called.
7271      [Damien Miller <dmiller@ilogic.com.au>; tiny changes by Bodo Moeller]
7272
7273      New function SSL_CTX_set_default_passwd_cb_userdata.
7274
7275      Compatibility note: As many C implementations push function arguments
7276      onto the stack in reverse order, the new library version is likely to
7277      interoperate with programs that have been compiled with the old
7278      pem_password_cb definition (PEM_whatever takes some data that
7279      happens to be on the stack as its last argument, and the callback
7280      just ignores this garbage); but there is no guarantee whatsoever that
7281      this will work.
7282
7283   *) The -DPLATFORM="\"$(PLATFORM)\"" definition and the similar -DCFLAGS=...
7284      (both in crypto/Makefile.ssl for use by crypto/cversion.c) caused
7285      problems not only on Windows, but also on some Unix platforms.
7286      To avoid problematic command lines, these definitions are now in an
7287      auto-generated file crypto/buildinf.h (created by crypto/Makefile.ssl
7288      for standard "make" builds, by util/mk1mf.pl for "mk1mf" builds).
7289      [Bodo Moeller]
7290
7291   *) MIPS III/IV assembler module is reimplemented.
7292      [Andy Polyakov]
7293
7294   *) More DES library cleanups: remove references to srand/rand and
7295      delete an unused file.
7296      [Ulf Möller]
7297
7298   *) Add support for the the free Netwide assembler (NASM) under Win32,
7299      since not many people have MASM (ml) and it can be hard to obtain.
7300      This is currently experimental but it seems to work OK and pass all
7301      the tests. Check out INSTALL.W32 for info.
7302      [Steve Henson]
7303
7304   *) Fix memory leaks in s3_clnt.c: All non-anonymous SSL3/TLS1 connections
7305      without temporary keys kept an extra copy of the server key,
7306      and connections with temporary keys did not free everything in case
7307      of an error.
7308      [Bodo Moeller]
7309
7310   *) New function RSA_check_key and new openssl rsa option -check
7311      for verifying the consistency of RSA keys.
7312      [Ulf Moeller, Bodo Moeller]
7313
7314   *) Various changes to make Win32 compile work: 
7315      1. Casts to avoid "loss of data" warnings in p5_crpt2.c
7316      2. Change unsigned int to int in b_dump.c to avoid "signed/unsigned
7317         comparison" warnings.
7318      3. Add sk_<TYPE>_sort to DEF file generator and do make update.
7319      [Steve Henson]
7320
7321   *) Add a debugging option to PKCS#5 v2 key generation function: when
7322      you #define DEBUG_PKCS5V2 passwords, salts, iteration counts and
7323      derived keys are printed to stderr.
7324      [Steve Henson]
7325
7326   *) Copy the flags in ASN1_STRING_dup().
7327      [Roman E. Pavlov <pre@mo.msk.ru>]
7328
7329   *) The x509 application mishandled signing requests containing DSA
7330      keys when the signing key was also DSA and the parameters didn't match.
7331
7332      It was supposed to omit the parameters when they matched the signing key:
7333      the verifying software was then supposed to automatically use the CA's
7334      parameters if they were absent from the end user certificate.
7335
7336      Omitting parameters is no longer recommended. The test was also
7337      the wrong way round! This was probably due to unusual behaviour in
7338      EVP_cmp_parameters() which returns 1 if the parameters match. 
7339      This meant that parameters were omitted when they *didn't* match and
7340      the certificate was useless. Certificates signed with 'ca' didn't have
7341      this bug.
7342      [Steve Henson, reported by Doug Erickson <Doug.Erickson@Part.NET>]
7343
7344   *) Memory leak checking (-DCRYPTO_MDEBUG) had some problems.
7345      The interface is as follows:
7346      Applications can use
7347          CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON) aka MemCheck_start(),
7348          CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_OFF) aka MemCheck_stop();
7349      "off" is now the default.
7350      The library internally uses
7351          CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE) aka MemCheck_off(),
7352          CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE) aka MemCheck_on()
7353      to disable memory-checking temporarily.
7354
7355      Some inconsistent states that previously were possible (and were
7356      even the default) are now avoided.
7357
7358      -DCRYPTO_MDEBUG_TIME is new and additionally stores the current time
7359      with each memory chunk allocated; this is occasionally more helpful
7360      than just having a counter.
7361
7362      -DCRYPTO_MDEBUG_THREAD is also new and adds the thread ID.
7363
7364      -DCRYPTO_MDEBUG_ALL enables all of the above, plus any future
7365      extensions.
7366      [Bodo Moeller]
7367
7368   *) Introduce "mode" for SSL structures (with defaults in SSL_CTX),
7369      which largely parallels "options", but is for changing API behaviour,
7370      whereas "options" are about protocol behaviour.
7371      Initial "mode" flags are:
7372
7373      SSL_MODE_ENABLE_PARTIAL_WRITE   Allow SSL_write to report success when
7374                                      a single record has been written.
7375      SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER  Don't insist that SSL_write
7376                                      retries use the same buffer location.
7377                                      (But all of the contents must be
7378                                      copied!)
7379      [Bodo Moeller]
7380
7381   *) Bugfix: SSL_set_options ignored its parameter, only SSL_CTX_set_options
7382      worked.
7383
7384   *) Fix problems with no-hmac etc.
7385      [Ulf Möller, pointed out by Brian Wellington <bwelling@tislabs.com>]
7386
7387   *) New functions RSA_get_default_method(), RSA_set_method() and
7388      RSA_get_method(). These allows replacement of RSA_METHODs without having
7389      to mess around with the internals of an RSA structure.
7390      [Steve Henson]
7391
7392   *) Fix memory leaks in DSA_do_sign and DSA_is_prime.
7393      Also really enable memory leak checks in openssl.c and in some
7394      test programs.
7395      [Chad C. Mulligan, Bodo Moeller]
7396
7397   *) Fix a bug in d2i_ASN1_INTEGER() and i2d_ASN1_INTEGER() which can mess
7398      up the length of negative integers. This has now been simplified to just
7399      store the length when it is first determined and use it later, rather
7400      than trying to keep track of where data is copied and updating it to
7401      point to the end.
7402      [Steve Henson, reported by Brien Wheeler
7403       <bwheeler@authentica-security.com>]
7404
7405   *) Add a new function PKCS7_signatureVerify. This allows the verification
7406      of a PKCS#7 signature but with the signing certificate passed to the
7407      function itself. This contrasts with PKCS7_dataVerify which assumes the
7408      certificate is present in the PKCS#7 structure. This isn't always the
7409      case: certificates can be omitted from a PKCS#7 structure and be
7410      distributed by "out of band" means (such as a certificate database).
7411      [Steve Henson]
7412
7413   *) Complete the PEM_* macros with DECLARE_PEM versions to replace the
7414      function prototypes in pem.h, also change util/mkdef.pl to add the
7415      necessary function names. 
7416      [Steve Henson]
7417
7418   *) mk1mf.pl (used by Windows builds) did not properly read the
7419      options set by Configure in the top level Makefile, and Configure
7420      was not even able to write more than one option correctly.
7421      Fixed, now "no-idea no-rc5 -DCRYPTO_MDEBUG" etc. works as intended.
7422      [Bodo Moeller]
7423
7424   *) New functions CONF_load_bio() and CONF_load_fp() to allow a config
7425      file to be loaded from a BIO or FILE pointer. The BIO version will
7426      for example allow memory BIOs to contain config info.
7427      [Steve Henson]
7428
7429   *) New function "CRYPTO_num_locks" that returns CRYPTO_NUM_LOCKS.
7430      Whoever hopes to achieve shared-library compatibility across versions
7431      must use this, not the compile-time macro.
7432      (Exercise 0.9.4: Which is the minimum library version required by
7433      such programs?)
7434      Note: All this applies only to multi-threaded programs, others don't
7435      need locks.
7436      [Bodo Moeller]
7437
7438   *) Add missing case to s3_clnt.c state machine -- one of the new SSL tests
7439      through a BIO pair triggered the default case, i.e.
7440      SSLerr(...,SSL_R_UNKNOWN_STATE).
7441      [Bodo Moeller]
7442
7443   *) New "BIO pair" concept (crypto/bio/bss_bio.c) so that applications
7444      can use the SSL library even if none of the specific BIOs is
7445      appropriate.
7446      [Bodo Moeller]
7447
7448   *) Fix a bug in i2d_DSAPublicKey() which meant it returned the wrong value
7449      for the encoded length.
7450      [Jeon KyoungHo <khjeon@sds.samsung.co.kr>]
7451
7452   *) Add initial documentation of the X509V3 functions.
7453      [Steve Henson]
7454
7455   *) Add a new pair of functions PEM_write_PKCS8PrivateKey() and 
7456      PEM_write_bio_PKCS8PrivateKey() that are equivalent to
7457      PEM_write_PrivateKey() and PEM_write_bio_PrivateKey() but use the more
7458      secure PKCS#8 private key format with a high iteration count.
7459      [Steve Henson]
7460
7461   *) Fix determination of Perl interpreter: A perl or perl5
7462      _directory_ in $PATH was also accepted as the interpreter.
7463      [Ralf S. Engelschall]
7464
7465   *) Fix demos/sign/sign.c: well there wasn't anything strictly speaking
7466      wrong with it but it was very old and did things like calling
7467      PEM_ASN1_read() directly and used MD5 for the hash not to mention some
7468      unusual formatting.
7469      [Steve Henson]
7470
7471   *) Fix demos/selfsign.c: it used obsolete and deleted functions, changed
7472      to use the new extension code.
7473      [Steve Henson]
7474
7475   *) Implement the PEM_read/PEM_write functions in crypto/pem/pem_all.c
7476      with macros. This should make it easier to change their form, add extra
7477      arguments etc. Fix a few PEM prototypes which didn't have cipher as a
7478      constant.
7479      [Steve Henson]
7480
7481   *) Add to configuration table a new entry that can specify an alternative
7482      name for unistd.h (for pre-POSIX systems); we need this for NeXTstep,
7483      according to Mark Crispin <MRC@Panda.COM>.
7484      [Bodo Moeller]
7485
7486 #if 0
7487   *) DES CBC did not update the IV. Weird.
7488      [Ben Laurie]
7489 #else
7490      des_cbc_encrypt does not update the IV, but des_ncbc_encrypt does.
7491      Changing the behaviour of the former might break existing programs --
7492      where IV updating is needed, des_ncbc_encrypt can be used.
7493 #endif
7494
7495   *) When bntest is run from "make test" it drives bc to check its
7496      calculations, as well as internally checking them. If an internal check
7497      fails, it needs to cause bc to give a non-zero result or make test carries
7498      on without noticing the failure. Fixed.
7499      [Ben Laurie]
7500
7501   *) DES library cleanups.
7502      [Ulf Möller]
7503
7504   *) Add support for PKCS#5 v2.0 PBE algorithms. This will permit PKCS#8 to be
7505      used with any cipher unlike PKCS#5 v1.5 which can at most handle 64 bit
7506      ciphers. NOTE: although the key derivation function has been verified
7507      against some published test vectors it has not been extensively tested
7508      yet. Added a -v2 "cipher" option to pkcs8 application to allow the use
7509      of v2.0.
7510      [Steve Henson]
7511
7512   *) Instead of "mkdir -p", which is not fully portable, use new
7513      Perl script "util/mkdir-p.pl".
7514      [Bodo Moeller]
7515
7516   *) Rewrite the way password based encryption (PBE) is handled. It used to
7517      assume that the ASN1 AlgorithmIdentifier parameter was a PBEParameter
7518      structure. This was true for the PKCS#5 v1.5 and PKCS#12 PBE algorithms
7519      but doesn't apply to PKCS#5 v2.0 where it can be something else. Now
7520      the 'parameter' field of the AlgorithmIdentifier is passed to the
7521      underlying key generation function so it must do its own ASN1 parsing.
7522      This has also changed the EVP_PBE_CipherInit() function which now has a
7523      'parameter' argument instead of literal salt and iteration count values
7524      and the function EVP_PBE_ALGOR_CipherInit() has been deleted.
7525      [Steve Henson]
7526
7527   *) Support for PKCS#5 v1.5 compatible password based encryption algorithms
7528      and PKCS#8 functionality. New 'pkcs8' application linked to openssl.
7529      Needed to change the PEM_STRING_EVP_PKEY value which was just "PRIVATE
7530      KEY" because this clashed with PKCS#8 unencrypted string. Since this
7531      value was just used as a "magic string" and not used directly its
7532      value doesn't matter.
7533      [Steve Henson]
7534
7535   *) Introduce some semblance of const correctness to BN. Shame C doesn't
7536      support mutable.
7537      [Ben Laurie]
7538
7539   *) "linux-sparc64" configuration (ultrapenguin).
7540      [Ray Miller <ray.miller@oucs.ox.ac.uk>]
7541      "linux-sparc" configuration.
7542      [Christian Forster <fo@hawo.stw.uni-erlangen.de>]
7543
7544   *) config now generates no-xxx options for missing ciphers.
7545      [Ulf Möller]
7546
7547   *) Support the EBCDIC character set (work in progress).
7548      File ebcdic.c not yet included because it has a different license.
7549      [Martin Kraemer <Martin.Kraemer@MchP.Siemens.De>]
7550
7551   *) Support BS2000/OSD-POSIX.
7552      [Martin Kraemer <Martin.Kraemer@MchP.Siemens.De>]
7553
7554   *) Make callbacks for key generation use void * instead of char *.
7555      [Ben Laurie]
7556
7557   *) Make S/MIME samples compile (not yet tested).
7558      [Ben Laurie]
7559
7560   *) Additional typesafe stacks.
7561      [Ben Laurie]
7562
7563   *) New configuration variants "bsdi-elf-gcc" (BSD/OS 4.x).
7564      [Bodo Moeller]
7565
7566
7567  Changes between 0.9.3 and 0.9.3a  [29 May 1999]
7568
7569   *) New configuration variant "sco5-gcc".
7570
7571   *) Updated some demos.
7572      [Sean O Riordain, Wade Scholine]
7573
7574   *) Add missing BIO_free at exit of pkcs12 application.
7575      [Wu Zhigang]
7576
7577   *) Fix memory leak in conf.c.
7578      [Steve Henson]
7579
7580   *) Updates for Win32 to assembler version of MD5.
7581      [Steve Henson]
7582
7583   *) Set #! path to perl in apps/der_chop to where we found it
7584      instead of using a fixed path.
7585      [Bodo Moeller]
7586
7587   *) SHA library changes for irix64-mips4-cc.
7588      [Andy Polyakov]
7589
7590   *) Improvements for VMS support.
7591      [Richard Levitte]
7592
7593
7594  Changes between 0.9.2b and 0.9.3  [24 May 1999]
7595
7596   *) Bignum library bug fix. IRIX 6 passes "make test" now!
7597      This also avoids the problems with SC4.2 and unpatched SC5.  
7598      [Andy Polyakov <appro@fy.chalmers.se>]
7599
7600   *) New functions sk_num, sk_value and sk_set to replace the previous macros.
7601      These are required because of the typesafe stack would otherwise break 
7602      existing code. If old code used a structure member which used to be STACK
7603      and is now STACK_OF (for example cert in a PKCS7_SIGNED structure) with
7604      sk_num or sk_value it would produce an error because the num, data members
7605      are not present in STACK_OF. Now it just produces a warning. sk_set
7606      replaces the old method of assigning a value to sk_value
7607      (e.g. sk_value(x, i) = y) which the library used in a few cases. Any code
7608      that does this will no longer work (and should use sk_set instead) but
7609      this could be regarded as a "questionable" behaviour anyway.
7610      [Steve Henson]
7611
7612   *) Fix most of the other PKCS#7 bugs. The "experimental" code can now
7613      correctly handle encrypted S/MIME data.
7614      [Steve Henson]
7615
7616   *) Change type of various DES function arguments from des_cblock
7617      (which means, in function argument declarations, pointer to char)
7618      to des_cblock * (meaning pointer to array with 8 char elements),
7619      which allows the compiler to do more typechecking; it was like
7620      that back in SSLeay, but with lots of ugly casts.
7621
7622      Introduce new type const_des_cblock.
7623      [Bodo Moeller]
7624
7625   *) Reorganise the PKCS#7 library and get rid of some of the more obvious
7626      problems: find RecipientInfo structure that matches recipient certificate
7627      and initialise the ASN1 structures properly based on passed cipher.
7628      [Steve Henson]
7629
7630   *) Belatedly make the BN tests actually check the results.
7631      [Ben Laurie]
7632
7633   *) Fix the encoding and decoding of negative ASN1 INTEGERS and conversion
7634      to and from BNs: it was completely broken. New compilation option
7635      NEG_PUBKEY_BUG to allow for some broken certificates that encode public
7636      key elements as negative integers.
7637      [Steve Henson]
7638
7639   *) Reorganize and speed up MD5.
7640      [Andy Polyakov <appro@fy.chalmers.se>]
7641
7642   *) VMS support.
7643      [Richard Levitte <richard@levitte.org>]
7644
7645   *) New option -out to asn1parse to allow the parsed structure to be
7646      output to a file. This is most useful when combined with the -strparse
7647      option to examine the output of things like OCTET STRINGS.
7648      [Steve Henson]
7649
7650   *) Make SSL library a little more fool-proof by not requiring any longer
7651      that SSL_set_{accept,connect}_state be called before
7652      SSL_{accept,connect} may be used (SSL_set_..._state is omitted
7653      in many applications because usually everything *appeared* to work as
7654      intended anyway -- now it really works as intended).
7655      [Bodo Moeller]
7656
7657   *) Move openssl.cnf out of lib/.
7658      [Ulf Möller]
7659
7660   *) Fix various things to let OpenSSL even pass ``egcc -pipe -O2 -Wall
7661      -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes
7662      -Wmissing-declarations -Wnested-externs -Winline'' with EGCS 1.1.2+ 
7663      [Ralf S. Engelschall]
7664
7665   *) Various fixes to the EVP and PKCS#7 code. It may now be able to
7666      handle PKCS#7 enveloped data properly.
7667      [Sebastian Akerman <sak@parallelconsulting.com>, modified by Steve]
7668
7669   *) Create a duplicate of the SSL_CTX's CERT in SSL_new instead of
7670      copying pointers.  The cert_st handling is changed by this in
7671      various ways (and thus what used to be known as ctx->default_cert
7672      is now called ctx->cert, since we don't resort to s->ctx->[default_]cert
7673      any longer when s->cert does not give us what we need).
7674      ssl_cert_instantiate becomes obsolete by this change.
7675      As soon as we've got the new code right (possibly it already is?),
7676      we have solved a couple of bugs of the earlier code where s->cert
7677      was used as if it could not have been shared with other SSL structures.
7678
7679      Note that using the SSL API in certain dirty ways now will result
7680      in different behaviour than observed with earlier library versions:
7681      Changing settings for an SSL_CTX *ctx after having done s = SSL_new(ctx)
7682      does not influence s as it used to.
7683      
7684      In order to clean up things more thoroughly, inside SSL_SESSION
7685      we don't use CERT any longer, but a new structure SESS_CERT
7686      that holds per-session data (if available); currently, this is
7687      the peer's certificate chain and, for clients, the server's certificate
7688      and temporary key.  CERT holds only those values that can have
7689      meaningful defaults in an SSL_CTX.
7690      [Bodo Moeller]
7691
7692   *) New function X509V3_EXT_i2d() to create an X509_EXTENSION structure
7693      from the internal representation. Various PKCS#7 fixes: remove some
7694      evil casts and set the enc_dig_alg field properly based on the signing
7695      key type.
7696      [Steve Henson]
7697
7698   *) Allow PKCS#12 password to be set from the command line or the
7699      environment. Let 'ca' get its config file name from the environment
7700      variables "OPENSSL_CONF" or "SSLEAY_CONF" (for consistency with 'req'
7701      and 'x509').
7702      [Steve Henson]
7703
7704   *) Allow certificate policies extension to use an IA5STRING for the
7705      organization field. This is contrary to the PKIX definition but
7706      VeriSign uses it and IE5 only recognises this form. Document 'x509'
7707      extension option.
7708      [Steve Henson]
7709
7710   *) Add PEDANTIC compiler flag to allow compilation with gcc -pedantic,
7711      without disallowing inline assembler and the like for non-pedantic builds.
7712      [Ben Laurie]
7713
7714   *) Support Borland C++ builder.
7715      [Janez Jere <jj@void.si>, modified by Ulf Möller]
7716
7717   *) Support Mingw32.
7718      [Ulf Möller]
7719
7720   *) SHA-1 cleanups and performance enhancements.
7721      [Andy Polyakov <appro@fy.chalmers.se>]
7722
7723   *) Sparc v8plus assembler for the bignum library.
7724      [Andy Polyakov <appro@fy.chalmers.se>]
7725
7726   *) Accept any -xxx and +xxx compiler options in Configure.
7727      [Ulf Möller]
7728
7729   *) Update HPUX configuration.
7730      [Anonymous]
7731   
7732   *) Add missing sk_<type>_unshift() function to safestack.h
7733      [Ralf S. Engelschall]
7734
7735   *) New function SSL_CTX_use_certificate_chain_file that sets the
7736      "extra_cert"s in addition to the certificate.  (This makes sense
7737      only for "PEM" format files, as chains as a whole are not
7738      DER-encoded.)
7739      [Bodo Moeller]
7740
7741   *) Support verify_depth from the SSL API.
7742      x509_vfy.c had what can be considered an off-by-one-error:
7743      Its depth (which was not part of the external interface)
7744      was actually counting the number of certificates in a chain;
7745      now it really counts the depth.
7746      [Bodo Moeller]
7747
7748   *) Bugfix in crypto/x509/x509_cmp.c: The SSLerr macro was used
7749      instead of X509err, which often resulted in confusing error
7750      messages since the error codes are not globally unique
7751      (e.g. an alleged error in ssl3_accept when a certificate
7752      didn't match the private key).
7753
7754   *) New function SSL_CTX_set_session_id_context that allows to set a default
7755      value (so that you don't need SSL_set_session_id_context for each
7756      connection using the SSL_CTX).
7757      [Bodo Moeller]
7758
7759   *) OAEP decoding bug fix.
7760      [Ulf Möller]
7761
7762   *) Support INSTALL_PREFIX for package builders, as proposed by
7763      David Harris.
7764      [Bodo Moeller]
7765
7766   *) New Configure options "threads" and "no-threads".  For systems
7767      where the proper compiler options are known (currently Solaris
7768      and Linux), "threads" is the default.
7769      [Bodo Moeller]
7770
7771   *) New script util/mklink.pl as a faster substitute for util/mklink.sh.
7772      [Bodo Moeller]
7773
7774   *) Install various scripts to $(OPENSSLDIR)/misc, not to
7775      $(INSTALLTOP)/bin -- they shouldn't clutter directories
7776      such as /usr/local/bin.
7777      [Bodo Moeller]
7778
7779   *) "make linux-shared" to build shared libraries.
7780      [Niels Poppe <niels@netbox.org>]
7781
7782   *) New Configure option no-<cipher> (rsa, idea, rc5, ...).
7783      [Ulf Möller]
7784
7785   *) Add the PKCS#12 API documentation to openssl.txt. Preliminary support for
7786      extension adding in x509 utility.
7787      [Steve Henson]
7788
7789   *) Remove NOPROTO sections and error code comments.
7790      [Ulf Möller]
7791
7792   *) Partial rewrite of the DEF file generator to now parse the ANSI
7793      prototypes.
7794      [Steve Henson]
7795
7796   *) New Configure options --prefix=DIR and --openssldir=DIR.
7797      [Ulf Möller]
7798
7799   *) Complete rewrite of the error code script(s). It is all now handled
7800      by one script at the top level which handles error code gathering,
7801      header rewriting and C source file generation. It should be much better
7802      than the old method: it now uses a modified version of Ulf's parser to
7803      read the ANSI prototypes in all header files (thus the old K&R definitions
7804      aren't needed for error creation any more) and do a better job of
7805      translating function codes into names. The old 'ASN1 error code imbedded
7806      in a comment' is no longer necessary and it doesn't use .err files which
7807      have now been deleted. Also the error code call doesn't have to appear all
7808      on one line (which resulted in some large lines...).
7809      [Steve Henson]
7810
7811   *) Change #include filenames from <foo.h> to <openssl/foo.h>.
7812      [Bodo Moeller]
7813
7814   *) Change behaviour of ssl2_read when facing length-0 packets: Don't return
7815      0 (which usually indicates a closed connection), but continue reading.
7816      [Bodo Moeller]
7817
7818   *) Fix some race conditions.
7819      [Bodo Moeller]
7820
7821   *) Add support for CRL distribution points extension. Add Certificate
7822      Policies and CRL distribution points documentation.
7823      [Steve Henson]
7824
7825   *) Move the autogenerated header file parts to crypto/opensslconf.h.
7826      [Ulf Möller]
7827
7828   *) Fix new 56-bit DES export ciphersuites: they were using 7 bytes instead of
7829      8 of keying material. Merlin has also confirmed interop with this fix
7830      between OpenSSL and Baltimore C/SSL 2.0 and J/SSL 2.0.
7831      [Merlin Hughes <merlin@baltimore.ie>]
7832
7833   *) Fix lots of warnings.
7834      [Richard Levitte <levitte@stacken.kth.se>]
7835  
7836   *) In add_cert_dir() in crypto/x509/by_dir.c, break out of the loop if
7837      the directory spec didn't end with a LIST_SEPARATOR_CHAR.
7838      [Richard Levitte <levitte@stacken.kth.se>]
7839  
7840   *) Fix problems with sizeof(long) == 8.
7841      [Andy Polyakov <appro@fy.chalmers.se>]
7842
7843   *) Change functions to ANSI C.
7844      [Ulf Möller]
7845
7846   *) Fix typos in error codes.
7847      [Martin Kraemer <Martin.Kraemer@MchP.Siemens.De>, Ulf Möller]
7848
7849   *) Remove defunct assembler files from Configure.
7850      [Ulf Möller]
7851
7852   *) SPARC v8 assembler BIGNUM implementation.
7853      [Andy Polyakov <appro@fy.chalmers.se>]
7854
7855   *) Support for Certificate Policies extension: both print and set.
7856      Various additions to support the r2i method this uses.
7857      [Steve Henson]
7858
7859   *) A lot of constification, and fix a bug in X509_NAME_oneline() that could
7860      return a const string when you are expecting an allocated buffer.
7861      [Ben Laurie]
7862
7863   *) Add support for ASN1 types UTF8String and VISIBLESTRING, also the CHOICE
7864      types DirectoryString and DisplayText.
7865      [Steve Henson]
7866
7867   *) Add code to allow r2i extensions to access the configuration database,
7868      add an LHASH database driver and add several ctx helper functions.
7869      [Steve Henson]
7870
7871   *) Fix an evil bug in bn_expand2() which caused various BN functions to
7872      fail when they extended the size of a BIGNUM.
7873      [Steve Henson]
7874
7875   *) Various utility functions to handle SXNet extension. Modify mkdef.pl to
7876      support typesafe stack.
7877      [Steve Henson]
7878
7879   *) Fix typo in SSL_[gs]et_options().
7880      [Nils Frostberg <nils@medcom.se>]
7881
7882   *) Delete various functions and files that belonged to the (now obsolete)
7883      old X509V3 handling code.
7884      [Steve Henson]
7885
7886   *) New Configure option "rsaref".
7887      [Ulf Möller]
7888
7889   *) Don't auto-generate pem.h.
7890      [Bodo Moeller]
7891
7892   *) Introduce type-safe ASN.1 SETs.
7893      [Ben Laurie]
7894
7895   *) Convert various additional casted stacks to type-safe STACK_OF() variants.
7896      [Ben Laurie, Ralf S. Engelschall, Steve Henson]
7897
7898   *) Introduce type-safe STACKs. This will almost certainly break lots of code
7899      that links with OpenSSL (well at least cause lots of warnings), but fear
7900      not: the conversion is trivial, and it eliminates loads of evil casts. A
7901      few STACKed things have been converted already. Feel free to convert more.
7902      In the fullness of time, I'll do away with the STACK type altogether.
7903      [Ben Laurie]
7904
7905   *) Add `openssl ca -revoke <certfile>' facility which revokes a certificate
7906      specified in <certfile> by updating the entry in the index.txt file.
7907      This way one no longer has to edit the index.txt file manually for
7908      revoking a certificate. The -revoke option does the gory details now.
7909      [Massimiliano Pala <madwolf@openca.org>, Ralf S. Engelschall]
7910
7911   *) Fix `openssl crl -noout -text' combination where `-noout' killed the
7912      `-text' option at all and this way the `-noout -text' combination was
7913      inconsistent in `openssl crl' with the friends in `openssl x509|rsa|dsa'.
7914      [Ralf S. Engelschall]
7915
7916   *) Make sure a corresponding plain text error message exists for the
7917      X509_V_ERR_CERT_REVOKED/23 error number which can occur when a
7918      verify callback function determined that a certificate was revoked.
7919      [Ralf S. Engelschall]
7920
7921   *) Bugfix: In test/testenc, don't test "openssl <cipher>" for
7922      ciphers that were excluded, e.g. by -DNO_IDEA.  Also, test
7923      all available cipers including rc5, which was forgotten until now.
7924      In order to let the testing shell script know which algorithms
7925      are available, a new (up to now undocumented) command
7926      "openssl list-cipher-commands" is used.
7927      [Bodo Moeller]
7928
7929   *) Bugfix: s_client occasionally would sleep in select() when
7930      it should have checked SSL_pending() first.
7931      [Bodo Moeller]
7932
7933   *) New functions DSA_do_sign and DSA_do_verify to provide access to
7934      the raw DSA values prior to ASN.1 encoding.
7935      [Ulf Möller]
7936
7937   *) Tweaks to Configure
7938      [Niels Poppe <niels@netbox.org>]
7939
7940   *) Add support for PKCS#5 v2.0 ASN1 PBES2 structures. No other support,
7941      yet...
7942      [Steve Henson]
7943
7944   *) New variables $(RANLIB) and $(PERL) in the Makefiles.
7945      [Ulf Möller]
7946
7947   *) New config option to avoid instructions that are illegal on the 80386.
7948      The default code is faster, but requires at least a 486.
7949      [Ulf Möller]
7950   
7951   *) Got rid of old SSL2_CLIENT_VERSION (inconsistently used) and
7952      SSL2_SERVER_VERSION (not used at all) macros, which are now the
7953      same as SSL2_VERSION anyway.
7954      [Bodo Moeller]
7955
7956   *) New "-showcerts" option for s_client.
7957      [Bodo Moeller]
7958
7959   *) Still more PKCS#12 integration. Add pkcs12 application to openssl
7960      application. Various cleanups and fixes.
7961      [Steve Henson]
7962
7963   *) More PKCS#12 integration. Add new pkcs12 directory with Makefile.ssl and
7964      modify error routines to work internally. Add error codes and PBE init
7965      to library startup routines.
7966      [Steve Henson]
7967
7968   *) Further PKCS#12 integration. Added password based encryption, PKCS#8 and
7969      packing functions to asn1 and evp. Changed function names and error
7970      codes along the way.
7971      [Steve Henson]
7972
7973   *) PKCS12 integration: and so it begins... First of several patches to
7974      slowly integrate PKCS#12 functionality into OpenSSL. Add PKCS#12
7975      objects to objects.h
7976      [Steve Henson]
7977
7978   *) Add a new 'indent' option to some X509V3 extension code. Initial ASN1
7979      and display support for Thawte strong extranet extension.
7980      [Steve Henson]
7981
7982   *) Add LinuxPPC support.
7983      [Jeff Dubrule <igor@pobox.org>]
7984
7985   *) Get rid of redundant BN file bn_mulw.c, and rename bn_div64 to
7986      bn_div_words in alpha.s.
7987      [Hannes Reinecke <H.Reinecke@hw.ac.uk> and Ben Laurie]
7988
7989   *) Make sure the RSA OAEP test is skipped under -DRSAref because
7990      OAEP isn't supported when OpenSSL is built with RSAref.
7991      [Ulf Moeller <ulf@fitug.de>]
7992
7993   *) Move definitions of IS_SET/IS_SEQUENCE inside crypto/asn1/asn1.h 
7994      so they no longer are missing under -DNOPROTO. 
7995      [Soren S. Jorvang <soren@t.dk>]
7996
7997
7998  Changes between 0.9.1c and 0.9.2b  [22 Mar 1999]
7999
8000   *) Make SSL_get_peer_cert_chain() work in servers. Unfortunately, it still
8001      doesn't work when the session is reused. Coming soon!
8002      [Ben Laurie]
8003
8004   *) Fix a security hole, that allows sessions to be reused in the wrong
8005      context thus bypassing client cert protection! All software that uses
8006      client certs and session caches in multiple contexts NEEDS PATCHING to
8007      allow session reuse! A fuller solution is in the works.
8008      [Ben Laurie, problem pointed out by Holger Reif, Bodo Moeller (and ???)]
8009
8010   *) Some more source tree cleanups (removed obsolete files
8011      crypto/bf/asm/bf586.pl, test/test.txt and crypto/sha/asm/f.s; changed
8012      permission on "config" script to be executable) and a fix for the INSTALL
8013      document.
8014      [Ulf Moeller <ulf@fitug.de>]
8015
8016   *) Remove some legacy and erroneous uses of malloc, free instead of
8017      Malloc, Free.
8018      [Lennart Bang <lob@netstream.se>, with minor changes by Steve]
8019
8020   *) Make rsa_oaep_test return non-zero on error.
8021      [Ulf Moeller <ulf@fitug.de>]
8022
8023   *) Add support for native Solaris shared libraries. Configure
8024      solaris-sparc-sc4-pic, make, then run shlib/solaris-sc4.sh. It'd be nice
8025      if someone would make that last step automatic.
8026      [Matthias Loepfe <Matthias.Loepfe@AdNovum.CH>]
8027
8028   *) ctx_size was not built with the right compiler during "make links". Fixed.
8029      [Ben Laurie]
8030
8031   *) Change the meaning of 'ALL' in the cipher list. It now means "everything
8032      except NULL ciphers". This means the default cipher list will no longer
8033      enable NULL ciphers. They need to be specifically enabled e.g. with
8034      the string "DEFAULT:eNULL".
8035      [Steve Henson]
8036
8037   *) Fix to RSA private encryption routines: if p < q then it would
8038      occasionally produce an invalid result. This will only happen with
8039      externally generated keys because OpenSSL (and SSLeay) ensure p > q.
8040      [Steve Henson]
8041
8042   *) Be less restrictive and allow also `perl util/perlpath.pl
8043      /path/to/bin/perl' in addition to `perl util/perlpath.pl /path/to/bin',
8044      because this way one can also use an interpreter named `perl5' (which is
8045      usually the name of Perl 5.xxx on platforms where an Perl 4.x is still
8046      installed as `perl').
8047      [Matthias Loepfe <Matthias.Loepfe@adnovum.ch>]
8048
8049   *) Let util/clean-depend.pl work also with older Perl 5.00x versions.
8050      [Matthias Loepfe <Matthias.Loepfe@adnovum.ch>]
8051
8052   *) Fix Makefile.org so CC,CFLAG etc are passed to 'make links' add
8053      advapi32.lib to Win32 build and change the pem test comparision
8054      to fc.exe (thanks to Ulrich Kroener <kroneru@yahoo.com> for the
8055      suggestion). Fix misplaced ASNI prototypes and declarations in evp.h
8056      and crypto/des/ede_cbcm_enc.c.
8057      [Steve Henson]
8058
8059   *) DES quad checksum was broken on big-endian architectures. Fixed.
8060      [Ben Laurie]
8061
8062   *) Comment out two functions in bio.h that aren't implemented. Fix up the
8063      Win32 test batch file so it (might) work again. The Win32 test batch file
8064      is horrible: I feel ill....
8065      [Steve Henson]
8066
8067   *) Move various #ifdefs around so NO_SYSLOG, NO_DIRENT etc are now selected
8068      in e_os.h. Audit of header files to check ANSI and non ANSI
8069      sections: 10 functions were absent from non ANSI section and not exported
8070      from Windows DLLs. Fixed up libeay.num for new functions.
8071      [Steve Henson]
8072
8073   *) Make `openssl version' output lines consistent.
8074      [Ralf S. Engelschall]
8075
8076   *) Fix Win32 symbol export lists for BIO functions: Added
8077      BIO_get_ex_new_index, BIO_get_ex_num, BIO_get_ex_data and BIO_set_ex_data
8078      to ms/libeay{16,32}.def.
8079      [Ralf S. Engelschall]
8080
8081   *) Second round of fixing the OpenSSL perl/ stuff. It now at least compiled
8082      fine under Unix and passes some trivial tests I've now added. But the
8083      whole stuff is horribly incomplete, so a README.1ST with a disclaimer was
8084      added to make sure no one expects that this stuff really works in the
8085      OpenSSL 0.9.2 release.  Additionally I've started to clean the XS sources
8086      up and fixed a few little bugs and inconsistencies in OpenSSL.{pm,xs} and
8087      openssl_bio.xs.
8088      [Ralf S. Engelschall]
8089
8090   *) Fix the generation of two part addresses in perl.
8091      [Kenji Miyake <kenji@miyake.org>, integrated by Ben Laurie]
8092
8093   *) Add config entry for Linux on MIPS.
8094      [John Tobey <jtobey@channel1.com>]
8095
8096   *) Make links whenever Configure is run, unless we are on Windoze.
8097      [Ben Laurie]
8098
8099   *) Permit extensions to be added to CRLs using crl_section in openssl.cnf.
8100      Currently only issuerAltName and AuthorityKeyIdentifier make any sense
8101      in CRLs.
8102      [Steve Henson]
8103
8104   *) Add a useful kludge to allow package maintainers to specify compiler and
8105      other platforms details on the command line without having to patch the
8106      Configure script everytime: One now can use ``perl Configure
8107      <id>:<details>'', i.e. platform ids are allowed to have details appended
8108      to them (seperated by colons). This is treated as there would be a static
8109      pre-configured entry in Configure's %table under key <id> with value
8110      <details> and ``perl Configure <id>'' is called.  So, when you want to
8111      perform a quick test-compile under FreeBSD 3.1 with pgcc and without
8112      assembler stuff you can use ``perl Configure "FreeBSD-elf:pgcc:-O6:::"''
8113      now, which overrides the FreeBSD-elf entry on-the-fly.
8114      [Ralf S. Engelschall]
8115
8116   *) Disable new TLS1 ciphersuites by default: they aren't official yet.
8117      [Ben Laurie]
8118
8119   *) Allow DSO flags like -fpic, -fPIC, -KPIC etc. to be specified
8120      on the `perl Configure ...' command line. This way one can compile
8121      OpenSSL libraries with Position Independent Code (PIC) which is needed
8122      for linking it into DSOs.
8123      [Ralf S. Engelschall]
8124
8125   *) Remarkably, export ciphers were totally broken and no-one had noticed!
8126      Fixed.
8127      [Ben Laurie]
8128
8129   *) Cleaned up the LICENSE document: The official contact for any license
8130      questions now is the OpenSSL core team under openssl-core@openssl.org.
8131      And add a paragraph about the dual-license situation to make sure people
8132      recognize that _BOTH_ the OpenSSL license _AND_ the SSLeay license apply
8133      to the OpenSSL toolkit.
8134      [Ralf S. Engelschall]
8135
8136   *) General source tree makefile cleanups: Made `making xxx in yyy...'
8137      display consistent in the source tree and replaced `/bin/rm' by `rm'.
8138      Additonally cleaned up the `make links' target: Remove unnecessary
8139      semicolons, subsequent redundant removes, inline point.sh into mklink.sh
8140      to speed processing and no longer clutter the display with confusing
8141      stuff. Instead only the actually done links are displayed.
8142      [Ralf S. Engelschall]
8143
8144   *) Permit null encryption ciphersuites, used for authentication only. It used
8145      to be necessary to set the preprocessor define SSL_ALLOW_ENULL to do this.
8146      It is now necessary to set SSL_FORBID_ENULL to prevent the use of null
8147      encryption.
8148      [Ben Laurie]
8149
8150   *) Add a bunch of fixes to the PKCS#7 stuff. It used to sometimes reorder
8151      signed attributes when verifying signatures (this would break them), 
8152      the detached data encoding was wrong and public keys obtained using
8153      X509_get_pubkey() weren't freed.
8154      [Steve Henson]
8155
8156   *) Add text documentation for the BUFFER functions. Also added a work around
8157      to a Win95 console bug. This was triggered by the password read stuff: the
8158      last character typed gets carried over to the next fread(). If you were 
8159      generating a new cert request using 'req' for example then the last
8160      character of the passphrase would be CR which would then enter the first
8161      field as blank.
8162      [Steve Henson]
8163
8164   *) Added the new `Includes OpenSSL Cryptography Software' button as
8165      doc/openssl_button.{gif,html} which is similar in style to the old SSLeay
8166      button and can be used by applications based on OpenSSL to show the
8167      relationship to the OpenSSL project.  
8168      [Ralf S. Engelschall]
8169
8170   *) Remove confusing variables in function signatures in files
8171      ssl/ssl_lib.c and ssl/ssl.h.
8172      [Lennart Bong <lob@kulthea.stacken.kth.se>]
8173
8174   *) Don't install bss_file.c under PREFIX/include/
8175      [Lennart Bong <lob@kulthea.stacken.kth.se>]
8176
8177   *) Get the Win32 compile working again. Modify mkdef.pl so it can handle
8178      functions that return function pointers and has support for NT specific
8179      stuff. Fix mk1mf.pl and VC-32.pl to support NT differences also. Various
8180      #ifdef WIN32 and WINNTs sprinkled about the place and some changes from
8181      unsigned to signed types: this was killing the Win32 compile.
8182      [Steve Henson]
8183
8184   *) Add new certificate file to stack functions,
8185      SSL_add_dir_cert_subjects_to_stack() and
8186      SSL_add_file_cert_subjects_to_stack().  These largely supplant
8187      SSL_load_client_CA_file(), and can be used to add multiple certs easily
8188      to a stack (usually this is then handed to SSL_CTX_set_client_CA_list()).
8189      This means that Apache-SSL and similar packages don't have to mess around
8190      to add as many CAs as they want to the preferred list.
8191      [Ben Laurie]
8192
8193   *) Experiment with doxygen documentation. Currently only partially applied to
8194      ssl/ssl_lib.c.
8195      See http://www.stack.nl/~dimitri/doxygen/index.html, and run doxygen with
8196      openssl.doxy as the configuration file.
8197      [Ben Laurie]
8198   
8199   *) Get rid of remaining C++-style comments which strict C compilers hate.
8200      [Ralf S. Engelschall, pointed out by Carlos Amengual]
8201
8202   *) Changed BN_RECURSION in bn_mont.c to BN_RECURSION_MONT so it is not
8203      compiled in by default: it has problems with large keys.
8204      [Steve Henson]
8205
8206   *) Add a bunch of SSL_xxx() functions for configuring the temporary RSA and
8207      DH private keys and/or callback functions which directly correspond to
8208      their SSL_CTX_xxx() counterparts but work on a per-connection basis. This
8209      is needed for applications which have to configure certificates on a
8210      per-connection basis (e.g. Apache+mod_ssl) instead of a per-context basis
8211      (e.g. s_server). 
8212         For the RSA certificate situation is makes no difference, but
8213      for the DSA certificate situation this fixes the "no shared cipher"
8214      problem where the OpenSSL cipher selection procedure failed because the
8215      temporary keys were not overtaken from the context and the API provided
8216      no way to reconfigure them. 
8217         The new functions now let applications reconfigure the stuff and they
8218      are in detail: SSL_need_tmp_RSA, SSL_set_tmp_rsa, SSL_set_tmp_dh,
8219      SSL_set_tmp_rsa_callback and SSL_set_tmp_dh_callback.  Additionally a new
8220      non-public-API function ssl_cert_instantiate() is used as a helper
8221      function and also to reduce code redundancy inside ssl_rsa.c.
8222      [Ralf S. Engelschall]
8223
8224   *) Move s_server -dcert and -dkey options out of the undocumented feature
8225      area because they are useful for the DSA situation and should be
8226      recognized by the users.
8227      [Ralf S. Engelschall]
8228
8229   *) Fix the cipher decision scheme for export ciphers: the export bits are
8230      *not* within SSL_MKEY_MASK or SSL_AUTH_MASK, they are within
8231      SSL_EXP_MASK.  So, the original variable has to be used instead of the
8232      already masked variable.
8233      [Richard Levitte <levitte@stacken.kth.se>]
8234
8235   *) Fix 'port' variable from `int' to `unsigned int' in crypto/bio/b_sock.c
8236      [Richard Levitte <levitte@stacken.kth.se>]
8237
8238   *) Change type of another md_len variable in pk7_doit.c:PKCS7_dataFinal()
8239      from `int' to `unsigned int' because it's a length and initialized by
8240      EVP_DigestFinal() which expects an `unsigned int *'.
8241      [Richard Levitte <levitte@stacken.kth.se>]
8242
8243   *) Don't hard-code path to Perl interpreter on shebang line of Configure
8244      script. Instead use the usual Shell->Perl transition trick.
8245      [Ralf S. Engelschall]
8246
8247   *) Make `openssl x509 -noout -modulus' functional also for DSA certificates
8248      (in addition to RSA certificates) to match the behaviour of `openssl dsa
8249      -noout -modulus' as it's already the case for `openssl rsa -noout
8250      -modulus'.  For RSA the -modulus is the real "modulus" while for DSA
8251      currently the public key is printed (a decision which was already done by
8252      `openssl dsa -modulus' in the past) which serves a similar purpose.
8253      Additionally the NO_RSA no longer completely removes the whole -modulus
8254      option; it now only avoids using the RSA stuff. Same applies to NO_DSA
8255      now, too.
8256      [Ralf S.  Engelschall]
8257
8258   *) Add Arne Ansper's reliable BIO - this is an encrypted, block-digested
8259      BIO. See the source (crypto/evp/bio_ok.c) for more info.
8260      [Arne Ansper <arne@ats.cyber.ee>]
8261
8262   *) Dump the old yucky req code that tried (and failed) to allow raw OIDs
8263      to be added. Now both 'req' and 'ca' can use new objects defined in the
8264      config file.
8265      [Steve Henson]
8266
8267   *) Add cool BIO that does syslog (or event log on NT).
8268      [Arne Ansper <arne@ats.cyber.ee>, integrated by Ben Laurie]
8269
8270   *) Add support for new TLS ciphersuites, TLS_RSA_EXPORT56_WITH_RC4_56_MD5,
8271      TLS_RSA_EXPORT56_WITH_RC2_CBC_56_MD5 and
8272      TLS_RSA_EXPORT56_WITH_DES_CBC_SHA, as specified in "56-bit Export Cipher
8273      Suites For TLS", draft-ietf-tls-56-bit-ciphersuites-00.txt.
8274      [Ben Laurie]
8275
8276   *) Add preliminary config info for new extension code.
8277      [Steve Henson]
8278
8279   *) Make RSA_NO_PADDING really use no padding.
8280      [Ulf Moeller <ulf@fitug.de>]
8281
8282   *) Generate errors when private/public key check is done.
8283      [Ben Laurie]
8284
8285   *) Overhaul for 'crl' utility. New function X509_CRL_print. Partial support
8286      for some CRL extensions and new objects added.
8287      [Steve Henson]
8288
8289   *) Really fix the ASN1 IMPLICIT bug this time... Partial support for private
8290      key usage extension and fuller support for authority key id.
8291      [Steve Henson]
8292
8293   *) Add OAEP encryption for the OpenSSL crypto library. OAEP is the improved
8294      padding method for RSA, which is recommended for new applications in PKCS
8295      #1 v2.0 (RFC 2437, October 1998).
8296      OAEP (Optimal Asymmetric Encryption Padding) has better theoretical
8297      foundations than the ad-hoc padding used in PKCS #1 v1.5. It is secure
8298      against Bleichbacher's attack on RSA.
8299      [Ulf Moeller <ulf@fitug.de>, reformatted, corrected and integrated by
8300       Ben Laurie]
8301
8302   *) Updates to the new SSL compression code
8303      [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)]
8304
8305   *) Fix so that the version number in the master secret, when passed
8306      via RSA, checks that if TLS was proposed, but we roll back to SSLv3
8307      (because the server will not accept higher), that the version number
8308      is 0x03,0x01, not 0x03,0x00
8309      [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)]
8310
8311   *) Run extensive memory leak checks on SSL apps. Fixed *lots* of memory
8312      leaks in ssl/ relating to new X509_get_pubkey() behaviour. Also fixes
8313      in apps/ and an unrelated leak in crypto/dsa/dsa_vrf.c
8314      [Steve Henson]
8315
8316   *) Support for RAW extensions where an arbitrary extension can be
8317      created by including its DER encoding. See apps/openssl.cnf for
8318      an example.
8319      [Steve Henson]
8320
8321   *) Make sure latest Perl versions don't interpret some generated C array
8322      code as Perl array code in the crypto/err/err_genc.pl script.
8323      [Lars Weber <3weber@informatik.uni-hamburg.de>]
8324
8325   *) Modify ms/do_ms.bat to not generate assembly language makefiles since
8326      not many people have the assembler. Various Win32 compilation fixes and
8327      update to the INSTALL.W32 file with (hopefully) more accurate Win32
8328      build instructions.
8329      [Steve Henson]
8330
8331   *) Modify configure script 'Configure' to automatically create crypto/date.h
8332      file under Win32 and also build pem.h from pem.org. New script
8333      util/mkfiles.pl to create the MINFO file on environments that can't do a
8334      'make files': perl util/mkfiles.pl >MINFO should work.
8335      [Steve Henson]
8336
8337   *) Major rework of DES function declarations, in the pursuit of correctness
8338      and purity. As a result, many evil casts evaporated, and some weirdness,
8339      too. You may find this causes warnings in your code. Zapping your evil
8340      casts will probably fix them. Mostly.
8341      [Ben Laurie]
8342
8343   *) Fix for a typo in asn1.h. Bug fix to object creation script
8344      obj_dat.pl. It considered a zero in an object definition to mean
8345      "end of object": none of the objects in objects.h have any zeros
8346      so it wasn't spotted.
8347      [Steve Henson, reported by Erwann ABALEA <eabalea@certplus.com>]
8348
8349   *) Add support for Triple DES Cipher Block Chaining with Output Feedback
8350      Masking (CBCM). In the absence of test vectors, the best I have been able
8351      to do is check that the decrypt undoes the encrypt, so far. Send me test
8352      vectors if you have them.
8353      [Ben Laurie]
8354
8355   *) Correct calculation of key length for export ciphers (too much space was
8356      allocated for null ciphers). This has not been tested!
8357      [Ben Laurie]
8358
8359   *) Modifications to the mkdef.pl for Win32 DEF file creation. The usage
8360      message is now correct (it understands "crypto" and "ssl" on its
8361      command line). There is also now an "update" option. This will update
8362      the util/ssleay.num and util/libeay.num files with any new functions.
8363      If you do a: 
8364      perl util/mkdef.pl crypto ssl update
8365      it will update them.
8366      [Steve Henson]
8367
8368   *) Overhauled the Perl interface (perl/*):
8369      - ported BN stuff to OpenSSL's different BN library
8370      - made the perl/ source tree CVS-aware
8371      - renamed the package from SSLeay to OpenSSL (the files still contain
8372        their history because I've copied them in the repository)
8373      - removed obsolete files (the test scripts will be replaced
8374        by better Test::Harness variants in the future)
8375      [Ralf S. Engelschall]
8376
8377   *) First cut for a very conservative source tree cleanup:
8378      1. merge various obsolete readme texts into doc/ssleay.txt
8379      where we collect the old documents and readme texts.
8380      2. remove the first part of files where I'm already sure that we no
8381      longer need them because of three reasons: either they are just temporary
8382      files which were left by Eric or they are preserved original files where
8383      I've verified that the diff is also available in the CVS via "cvs diff
8384      -rSSLeay_0_8_1b" or they were renamed (as it was definitely the case for
8385      the crypto/md/ stuff).
8386      [Ralf S. Engelschall]
8387
8388   *) More extension code. Incomplete support for subject and issuer alt
8389      name, issuer and authority key id. Change the i2v function parameters
8390      and add an extra 'crl' parameter in the X509V3_CTX structure: guess
8391      what that's for :-) Fix to ASN1 macro which messed up
8392      IMPLICIT tag and add f_enum.c which adds a2i, i2a for ENUMERATED.
8393      [Steve Henson]
8394
8395   *) Preliminary support for ENUMERATED type. This is largely copied from the
8396      INTEGER code.
8397      [Steve Henson]
8398
8399   *) Add new function, EVP_MD_CTX_copy() to replace frequent use of memcpy.
8400      [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)]
8401
8402   *) Make sure `make rehash' target really finds the `openssl' program.
8403      [Ralf S. Engelschall, Matthias Loepfe <Matthias.Loepfe@adnovum.ch>]
8404
8405   *) Squeeze another 7% of speed out of MD5 assembler, at least on a P2. I'd
8406      like to hear about it if this slows down other processors.
8407      [Ben Laurie]
8408
8409   *) Add CygWin32 platform information to Configure script.
8410      [Alan Batie <batie@aahz.jf.intel.com>]
8411
8412   *) Fixed ms/32all.bat script: `no_asm' -> `no-asm'
8413      [Rainer W. Gerling <gerling@mpg-gv.mpg.de>]
8414   
8415   *) New program nseq to manipulate netscape certificate sequences
8416      [Steve Henson]
8417
8418   *) Modify crl2pkcs7 so it supports multiple -certfile arguments. Fix a
8419      few typos.
8420      [Steve Henson]
8421
8422   *) Fixes to BN code.  Previously the default was to define BN_RECURSION
8423      but the BN code had some problems that would cause failures when
8424      doing certificate verification and some other functions.
8425      [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)]
8426
8427   *) Add ASN1 and PEM code to support netscape certificate sequences.
8428      [Steve Henson]
8429
8430   *) Add ASN1 and PEM code to support netscape certificate sequences.
8431      [Steve Henson]
8432
8433   *) Add several PKIX and private extended key usage OIDs.
8434      [Steve Henson]
8435
8436   *) Modify the 'ca' program to handle the new extension code. Modify
8437      openssl.cnf for new extension format, add comments.
8438      [Steve Henson]
8439
8440   *) More X509 V3 changes. Fix typo in v3_bitstr.c. Add support to 'req'
8441      and add a sample to openssl.cnf so req -x509 now adds appropriate
8442      CA extensions.
8443      [Steve Henson]
8444
8445   *) Continued X509 V3 changes. Add to other makefiles, integrate with the
8446      error code, add initial support to X509_print() and x509 application.
8447      [Steve Henson]
8448
8449   *) Takes a deep breath and start addding X509 V3 extension support code. Add
8450      files in crypto/x509v3. Move original stuff to crypto/x509v3/old. All this
8451      stuff is currently isolated and isn't even compiled yet.
8452      [Steve Henson]
8453
8454   *) Continuing patches for GeneralizedTime. Fix up certificate and CRL
8455      ASN1 to use ASN1_TIME and modify print routines to use ASN1_TIME_print.
8456      Removed the versions check from X509 routines when loading extensions:
8457      this allows certain broken certificates that don't set the version
8458      properly to be processed.
8459      [Steve Henson]
8460
8461   *) Deal with irritating shit to do with dependencies, in YAAHW (Yet Another
8462      Ad Hoc Way) - Makefile.ssls now all contain local dependencies, which
8463      can still be regenerated with "make depend".
8464      [Ben Laurie]
8465
8466   *) Spelling mistake in C version of CAST-128.
8467      [Ben Laurie, reported by Jeremy Hylton <jeremy@cnri.reston.va.us>]
8468
8469   *) Changes to the error generation code. The perl script err-code.pl 
8470      now reads in the old error codes and retains the old numbers, only
8471      adding new ones if necessary. It also only changes the .err files if new
8472      codes are added. The makefiles have been modified to only insert errors
8473      when needed (to avoid needlessly modifying header files). This is done
8474      by only inserting errors if the .err file is newer than the auto generated
8475      C file. To rebuild all the error codes from scratch (the old behaviour)
8476      either modify crypto/Makefile.ssl to pass the -regen flag to err_code.pl
8477      or delete all the .err files.
8478      [Steve Henson]
8479
8480   *) CAST-128 was incorrectly implemented for short keys. The C version has
8481      been fixed, but is untested. The assembler versions are also fixed, but
8482      new assembler HAS NOT BEEN GENERATED FOR WIN32 - the Makefile needs fixing
8483      to regenerate it if needed.
8484      [Ben Laurie, reported (with fix for C version) by Jun-ichiro itojun
8485       Hagino <itojun@kame.net>]
8486
8487   *) File was opened incorrectly in randfile.c.
8488      [Ulf Möller <ulf@fitug.de>]
8489
8490   *) Beginning of support for GeneralizedTime. d2i, i2d, check and print
8491      functions. Also ASN1_TIME suite which is a CHOICE of UTCTime or
8492      GeneralizedTime. ASN1_TIME is the proper type used in certificates et
8493      al: it's just almost always a UTCTime. Note this patch adds new error
8494      codes so do a "make errors" if there are problems.
8495      [Steve Henson]
8496
8497   *) Correct Linux 1 recognition in config.
8498      [Ulf Möller <ulf@fitug.de>]
8499
8500   *) Remove pointless MD5 hash when using DSA keys in ca.
8501      [Anonymous <nobody@replay.com>]
8502
8503   *) Generate an error if given an empty string as a cert directory. Also
8504      generate an error if handed NULL (previously returned 0 to indicate an
8505      error, but didn't set one).
8506      [Ben Laurie, reported by Anonymous <nobody@replay.com>]
8507
8508   *) Add prototypes to SSL methods. Make SSL_write's buffer const, at last.
8509      [Ben Laurie]
8510
8511   *) Fix the dummy function BN_ref_mod_exp() in rsaref.c to have the correct
8512      parameters. This was causing a warning which killed off the Win32 compile.
8513      [Steve Henson]
8514
8515   *) Remove C++ style comments from crypto/bn/bn_local.h.
8516      [Neil Costigan <neil.costigan@celocom.com>]
8517
8518   *) The function OBJ_txt2nid was broken. It was supposed to return a nid
8519      based on a text string, looking up short and long names and finally
8520      "dot" format. The "dot" format stuff didn't work. Added new function
8521      OBJ_txt2obj to do the same but return an ASN1_OBJECT and rewrote 
8522      OBJ_txt2nid to use it. OBJ_txt2obj can also return objects even if the
8523      OID is not part of the table.
8524      [Steve Henson]
8525
8526   *) Add prototypes to X509 lookup/verify methods, fixing a bug in
8527      X509_LOOKUP_by_alias().
8528      [Ben Laurie]
8529
8530   *) Sort openssl functions by name.
8531      [Ben Laurie]
8532
8533   *) Get the gendsa program working (hopefully) and add it to app list. Remove
8534      encryption from sample DSA keys (in case anyone is interested the password
8535      was "1234").
8536      [Steve Henson]
8537
8538   *) Make _all_ *_free functions accept a NULL pointer.
8539      [Frans Heymans <fheymans@isaserver.be>]
8540
8541   *) If a DH key is generated in s3_srvr.c, don't blow it by trying to use
8542      NULL pointers.
8543      [Anonymous <nobody@replay.com>]
8544
8545   *) s_server should send the CAfile as acceptable CAs, not its own cert.
8546      [Bodo Moeller <3moeller@informatik.uni-hamburg.de>]
8547
8548   *) Don't blow it for numeric -newkey arguments to apps/req.
8549      [Bodo Moeller <3moeller@informatik.uni-hamburg.de>]
8550
8551   *) Temp key "for export" tests were wrong in s3_srvr.c.
8552      [Anonymous <nobody@replay.com>]
8553
8554   *) Add prototype for temp key callback functions
8555      SSL_CTX_set_tmp_{rsa,dh}_callback().
8556      [Ben Laurie]
8557
8558   *) Make DH_free() tolerate being passed a NULL pointer (like RSA_free() and
8559      DSA_free()). Make X509_PUBKEY_set() check for errors in d2i_PublicKey().
8560      [Steve Henson]
8561
8562   *) X509_name_add_entry() freed the wrong thing after an error.
8563      [Arne Ansper <arne@ats.cyber.ee>]
8564
8565   *) rsa_eay.c would attempt to free a NULL context.
8566      [Arne Ansper <arne@ats.cyber.ee>]
8567
8568   *) BIO_s_socket() had a broken should_retry() on Windoze.
8569      [Arne Ansper <arne@ats.cyber.ee>]
8570
8571   *) BIO_f_buffer() didn't pass on BIO_CTRL_FLUSH.
8572      [Arne Ansper <arne@ats.cyber.ee>]
8573
8574   *) Make sure the already existing X509_STORE->depth variable is initialized
8575      in X509_STORE_new(), but document the fact that this variable is still
8576      unused in the certificate verification process.
8577      [Ralf S. Engelschall]
8578
8579   *) Fix the various library and apps files to free up pkeys obtained from
8580      X509_PUBKEY_get() et al. Also allow x509.c to handle netscape extensions.
8581      [Steve Henson]
8582
8583   *) Fix reference counting in X509_PUBKEY_get(). This makes
8584      demos/maurice/example2.c work, amongst others, probably.
8585      [Steve Henson and Ben Laurie]
8586
8587   *) First cut of a cleanup for apps/. First the `ssleay' program is now named
8588      `openssl' and second, the shortcut symlinks for the `openssl <command>'
8589      are no longer created. This way we have a single and consistent command
8590      line interface `openssl <command>', similar to `cvs <command>'.
8591      [Ralf S. Engelschall, Paul Sutton and Ben Laurie]
8592
8593   *) ca.c: move test for DSA keys inside #ifndef NO_DSA. Make pubkey
8594      BIT STRING wrapper always have zero unused bits.
8595      [Steve Henson]
8596
8597   *) Add CA.pl, perl version of CA.sh, add extended key usage OID.
8598      [Steve Henson]
8599
8600   *) Make the top-level INSTALL documentation easier to understand.
8601      [Paul Sutton]
8602
8603   *) Makefiles updated to exit if an error occurs in a sub-directory
8604      make (including if user presses ^C) [Paul Sutton]
8605
8606   *) Make Montgomery context stuff explicit in RSA data structure.
8607      [Ben Laurie]
8608
8609   *) Fix build order of pem and err to allow for generated pem.h.
8610      [Ben Laurie]
8611
8612   *) Fix renumbering bug in X509_NAME_delete_entry().
8613      [Ben Laurie]
8614
8615   *) Enhanced the err-ins.pl script so it makes the error library number 
8616      global and can add a library name. This is needed for external ASN1 and
8617      other error libraries.
8618      [Steve Henson]
8619
8620   *) Fixed sk_insert which never worked properly.
8621      [Steve Henson]
8622
8623   *) Fix ASN1 macros so they can handle indefinite length construted 
8624      EXPLICIT tags. Some non standard certificates use these: they can now
8625      be read in.
8626      [Steve Henson]
8627
8628   *) Merged the various old/obsolete SSLeay documentation files (doc/xxx.doc)
8629      into a single doc/ssleay.txt bundle. This way the information is still
8630      preserved but no longer messes up this directory. Now it's new room for
8631      the new set of documenation files.
8632      [Ralf S. Engelschall]
8633
8634   *) SETs were incorrectly DER encoded. This was a major pain, because they
8635      shared code with SEQUENCEs, which aren't coded the same. This means that
8636      almost everything to do with SETs or SEQUENCEs has either changed name or
8637      number of arguments.
8638      [Ben Laurie, based on a partial fix by GP Jayan <gp@nsj.co.jp>]
8639
8640   *) Fix test data to work with the above.
8641      [Ben Laurie]
8642
8643   *) Fix the RSA header declarations that hid a bug I fixed in 0.9.0b but
8644      was already fixed by Eric for 0.9.1 it seems.
8645      [Ben Laurie - pointed out by Ulf Möller <ulf@fitug.de>]
8646
8647   *) Autodetect FreeBSD3.
8648      [Ben Laurie]
8649
8650   *) Fix various bugs in Configure. This affects the following platforms:
8651      nextstep
8652      ncr-scde
8653      unixware-2.0
8654      unixware-2.0-pentium
8655      sco5-cc.
8656      [Ben Laurie]
8657
8658   *) Eliminate generated files from CVS. Reorder tests to regenerate files
8659      before they are needed.
8660      [Ben Laurie]
8661
8662   *) Generate Makefile.ssl from Makefile.org (to keep CVS happy).
8663      [Ben Laurie]
8664
8665
8666  Changes between 0.9.1b and 0.9.1c  [23-Dec-1998]
8667
8668   *) Added OPENSSL_VERSION_NUMBER to crypto/crypto.h and 
8669      changed SSLeay to OpenSSL in version strings.
8670      [Ralf S. Engelschall]
8671   
8672   *) Some fixups to the top-level documents.
8673      [Paul Sutton]
8674
8675   *) Fixed the nasty bug where rsaref.h was not found under compile-time
8676      because the symlink to include/ was missing.
8677      [Ralf S. Engelschall]
8678
8679   *) Incorporated the popular no-RSA/DSA-only patches 
8680      which allow to compile a RSA-free SSLeay.
8681      [Andrew Cooke / Interrader Ldt., Ralf S. Engelschall]
8682
8683   *) Fixed nasty rehash problem under `make -f Makefile.ssl links'
8684      when "ssleay" is still not found.
8685      [Ralf S. Engelschall]
8686
8687   *) Added more platforms to Configure: Cray T3E, HPUX 11, 
8688      [Ralf S. Engelschall, Beckmann <beckman@acl.lanl.gov>]
8689
8690   *) Updated the README file.
8691      [Ralf S. Engelschall]
8692
8693   *) Added various .cvsignore files in the CVS repository subdirs
8694      to make a "cvs update" really silent.
8695      [Ralf S. Engelschall]
8696
8697   *) Recompiled the error-definition header files and added
8698      missing symbols to the Win32 linker tables.
8699      [Ralf S. Engelschall]
8700
8701   *) Cleaned up the top-level documents;
8702      o new files: CHANGES and LICENSE
8703      o merged VERSION, HISTORY* and README* files a CHANGES.SSLeay 
8704      o merged COPYRIGHT into LICENSE
8705      o removed obsolete TODO file
8706      o renamed MICROSOFT to INSTALL.W32
8707      [Ralf S. Engelschall]
8708
8709   *) Removed dummy files from the 0.9.1b source tree: 
8710      crypto/asn1/x crypto/bio/cd crypto/bio/fg crypto/bio/grep crypto/bio/vi
8711      crypto/bn/asm/......add.c crypto/bn/asm/a.out crypto/dsa/f crypto/md5/f
8712      crypto/pem/gmon.out crypto/perlasm/f crypto/pkcs7/build crypto/rsa/f
8713      crypto/sha/asm/f crypto/threads/f ms/zzz ssl/f ssl/f.mak test/f
8714      util/f.mak util/pl/f util/pl/f.mak crypto/bf/bf_locl.old apps/f
8715      [Ralf S. Engelschall]
8716
8717   *) Added various platform portability fixes.
8718      [Mark J. Cox]
8719
8720   *) The Genesis of the OpenSSL rpject:
8721      We start with the latest (unreleased) SSLeay version 0.9.1b which Eric A.
8722      Young and Tim J. Hudson created while they were working for C2Net until
8723      summer 1998.
8724      [The OpenSSL Project]
8725  
8726
8727  Changes between 0.9.0b and 0.9.1b  [not released]
8728
8729   *) Updated a few CA certificates under certs/
8730      [Eric A. Young]
8731
8732   *) Changed some BIGNUM api stuff.
8733      [Eric A. Young]
8734
8735   *) Various platform ports: OpenBSD, Ultrix, IRIX 64bit, NetBSD, 
8736      DGUX x86, Linux Alpha, etc.
8737      [Eric A. Young]
8738
8739   *) New COMP library [crypto/comp/] for SSL Record Layer Compression: 
8740      RLE (dummy implemented) and ZLIB (really implemented when ZLIB is
8741      available).
8742      [Eric A. Young]
8743
8744   *) Add -strparse option to asn1pars program which parses nested 
8745      binary structures 
8746      [Dr Stephen Henson <shenson@bigfoot.com>]
8747
8748   *) Added "oid_file" to ssleay.cnf for "ca" and "req" programs.
8749      [Eric A. Young]
8750
8751   *) DSA fix for "ca" program.
8752      [Eric A. Young]
8753
8754   *) Added "-genkey" option to "dsaparam" program.
8755      [Eric A. Young]
8756
8757   *) Added RIPE MD160 (rmd160) message digest.
8758      [Eric A. Young]
8759
8760   *) Added -a (all) option to "ssleay version" command.
8761      [Eric A. Young]
8762
8763   *) Added PLATFORM define which is the id given to Configure.
8764      [Eric A. Young]
8765
8766   *) Added MemCheck_XXXX functions to crypto/mem.c for memory checking.
8767      [Eric A. Young]
8768
8769   *) Extended the ASN.1 parser routines.
8770      [Eric A. Young]
8771
8772   *) Extended BIO routines to support REUSEADDR, seek, tell, etc.
8773      [Eric A. Young]
8774
8775   *) Added a BN_CTX to the BN library.
8776      [Eric A. Young]
8777
8778   *) Fixed the weak key values in DES library
8779      [Eric A. Young]
8780
8781   *) Changed API in EVP library for cipher aliases.
8782      [Eric A. Young]
8783
8784   *) Added support for RC2/64bit cipher.
8785      [Eric A. Young]
8786
8787   *) Converted the lhash library to the crypto/mem.c functions.
8788      [Eric A. Young]
8789
8790   *) Added more recognized ASN.1 object ids.
8791      [Eric A. Young]
8792
8793   *) Added more RSA padding checks for SSL/TLS.
8794      [Eric A. Young]
8795
8796   *) Added BIO proxy/filter functionality.
8797      [Eric A. Young]
8798
8799   *) Added extra_certs to SSL_CTX which can be used
8800      send extra CA certificates to the client in the CA cert chain sending
8801      process. It can be configured with SSL_CTX_add_extra_chain_cert().
8802      [Eric A. Young]
8803
8804   *) Now Fortezza is denied in the authentication phase because
8805      this is key exchange mechanism is not supported by SSLeay at all.
8806      [Eric A. Young]
8807
8808   *) Additional PKCS1 checks.
8809      [Eric A. Young]
8810
8811   *) Support the string "TLSv1" for all TLS v1 ciphers.
8812      [Eric A. Young]
8813
8814   *) Added function SSL_get_ex_data_X509_STORE_CTX_idx() which gives the
8815      ex_data index of the SSL context in the X509_STORE_CTX ex_data.
8816      [Eric A. Young]
8817
8818   *) Fixed a few memory leaks.
8819      [Eric A. Young]
8820
8821   *) Fixed various code and comment typos.
8822      [Eric A. Young]
8823
8824   *) A minor bug in ssl/s3_clnt.c where there would always be 4 0 
8825      bytes sent in the client random.
8826      [Edward Bishop <ebishop@spyglass.com>]
8827