1. 21 6月, 2000 1 次提交
    • D
      · 7ef82068
      Dr. Stephen Henson 提交于
      Handle ASN1_SET_OF and PKCS12_STACK_OF using function
      casts in the same way as STACK_OF.
      7ef82068
  2. 20 6月, 2000 4 次提交
  3. 19 6月, 2000 5 次提交
  4. 18 6月, 2000 3 次提交
  5. 17 6月, 2000 1 次提交
    • D
      Safe stack reorganisation in terms of function casts. · 3aceb94b
      Dr. Stephen Henson 提交于
      After some messing around this seems to work but needs
      a few more tests. Working out the syntax for sk_set_cmp_func()
      (cast it to a function that itself returns a function pointer)
      was painful :-(
      
      Needs some testing to see what other compilers think of this
      syntax.
      
      Also needs similar stuff for ASN1_SET_OF etc etc.
      3aceb94b
  6. 16 6月, 2000 7 次提交
  7. 15 6月, 2000 2 次提交
  8. 14 6月, 2000 1 次提交
  9. 13 6月, 2000 6 次提交
  10. 11 6月, 2000 3 次提交
  11. 10 6月, 2000 3 次提交
  12. 09 6月, 2000 4 次提交
    • R
      Using checks of the existence of HEADER_{foo}_H in other header files · ef33b970
      Richard Levitte 提交于
      was a really bad idea.  For example, the following:
      
      	#include <x509.h>
      	#include <bio.h>
      	#include <asn1.h>
      
      would make sure that things like ASN1_UTCTIME_print() wasn't defined
      unless you moved the inclusion of bio.h to above the inclusion of
      x509.h.  The reason is that x509.h includes asn1.h, and the
      declaration of ASN1_UTCTIME_print() depended on the definition of
      HEADER_BIO_H.  That's what I call an obscure bug.
      
      Instead, this change makes sure that whatever header files are needed
      for the correct process of one header file are included automagically,
      and that the definitions of, for example, BIO-related things are
      dependent on the absence of the NO_{foo} macros.  This is also
      consistent with the way parts of OpenSSL can be excluded at will.
      ef33b970
    • B
      Comment for increased code clarity. · 814ed26c
      Bodo Möller 提交于
      814ed26c
    • B
      Another attempt to allow compiling on SunOS 4.*. · 6da6a113
      Bodo Möller 提交于
      6da6a113
    • B
      Harmonize indentation. · 3dd985ee
      Bodo Möller 提交于
      3dd985ee