1. 29 6月, 2000 2 次提交
  2. 28 6月, 2000 1 次提交
  3. 24 6月, 2000 1 次提交
  4. 23 6月, 2000 3 次提交
  5. 22 6月, 2000 2 次提交
    • D
      Change mkstack.pl so it now sorts each group · 4dd45354
      Dr. Stephen Henson 提交于
      into lexical order. Previously it depended on
      the order of files in the directory.
      
      This should now mean that all systems will
      agree on the order of safestack.h and will
      not change it needlessly and avoid massive
      needless commits to safestack.h in future.
      
      It wont however avoid this one :-(
      4dd45354
    • U
      use faster version · 8415060e
      Ulf Möller 提交于
      8415060e
  6. 21 6月, 2000 3 次提交
    • G
      * This adds some checking to the 'dlfcn' DSO_METHOD that at least lets · 1a797ac6
      Geoff Thorpe 提交于
        it cope with OpenBSD which doesn't understand "RTLD_NOW".
      * Added the dso_scheme config string entry for OpenBSD-x86 to give it
        DSO support.
      * 'make update' that has also absorbed some of Steve's mkstack changes
        for the ASN-related macros.
      1a797ac6
    • D
      · 13083215
      Dr. Stephen Henson 提交于
      Fixes for Win32 build.
      
      This is mostly a work around for the old VC++ problem
      that it treats func() as func(void).
      
      Various prototypes had been added to 'compare' function
      pointers that triggered this. This could be fixed by removing
      the prototype, adding function pointer casts to every call or
      changing the passed function to use the expected arguments.
      I mostly did the latter.
      
      The mkdef.pl script was modified to remove the typesafe
      functions which no longer exist.
      
      Oh and some functions called OPENSSL_freeLibrary() were
      changed back to FreeLibrary(), wonder how that happened :-)
      13083215
    • D
      · 7ef82068
      Dr. Stephen Henson 提交于
      Handle ASN1_SET_OF and PKCS12_STACK_OF using function
      casts in the same way as STACK_OF.
      7ef82068
  7. 20 6月, 2000 3 次提交
  8. 19 6月, 2000 3 次提交
  9. 18 6月, 2000 2 次提交
  10. 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
  11. 16 6月, 2000 6 次提交
    • R
      Change to have a single library that works on both Win9x and WinNT. · fb3e1eeb
      Richard Levitte 提交于
      As far as I understand, it still needs to be compiled on NT...
      Contributed by Arne Ansper <arne@ats.cyber.ee>
      fb3e1eeb
    • B
      typo · f03aa651
      Bodo Möller 提交于
      f03aa651
    • B
      5d07c20d
    • B
      There are compilers that complain if a variable has the same name as a · 4ee1eb7b
      Bodo Möller 提交于
      label. (Reported by Alexei Bakharevski.)
      4ee1eb7b
    • G
      Currently the DSO_METHOD interface has one entry point to bind all · e9a68cfb
      Geoff Thorpe 提交于
      "symbols" including functions (of all prototypes( and variables. Whilst
      casting any function type to another violates ANSI C (I believe), it is
      a necessary evil in shared-library APIs. However, it is quite
      conceivable that functions in general and data symbols could very well
      be represented differently to each other on some systems, as Bodo said;
      
      > Since the function/object distinction is a lot more likely to be
      > important on real-life platforms supporting DSO *and* it can be quite
      > easily done *and* it will silence compilers that don't like
      > assignments from void pointers to function pointer variables, why
      > not do it?
      
      I agree. So this change splits the "dso_bind" handler in DSO_METHOD
      into "dso_bind_var" and "dso_bind_func". Similarly the exported
      function DSO_bind() has been split in two. I've also put together
      changes for the various DSO_METHOD implementations, but so far only
      DSO_dlfcn() has been tested. BTW: The prototype for dso_bind had been
      a bit strange so I've taken the opportunity to change its shape (in
      both variations).
      
      Also, the README has been updated - particularly with a note about
      using customised native name-translation for shared libraries (and that
      you can't do it yet).
      e9a68cfb
    • D
      d3ed8ceb
  12. 15 6月, 2000 1 次提交
  13. 13 6月, 2000 5 次提交
  14. 11 6月, 2000 3 次提交
  15. 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
      Harmonize indentation. · 3dd985ee
      Bodo Möller 提交于
      3dd985ee
    • B
      Slightly faster DSA verification (BN_mod_exp2_mont), · dc434bbc
      Bodo Möller 提交于
      marginally faster BN_mod_exp for 1024 bit exponents.
      dc434bbc