1. 16 11月, 2006 1 次提交
  2. 18 9月, 2006 1 次提交
  3. 13 2月, 2006 1 次提交
  4. 14 5月, 2005 1 次提交
  5. 13 5月, 2005 1 次提交
  6. 20 4月, 2005 3 次提交
  7. 19 4月, 2005 1 次提交
  8. 31 3月, 2005 1 次提交
  9. 05 10月, 2004 1 次提交
  10. 07 9月, 2004 1 次提交
  11. 25 3月, 2004 1 次提交
  12. 23 3月, 2004 1 次提交
  13. 01 5月, 2003 1 次提交
  14. 30 4月, 2003 2 次提交
  15. 25 3月, 2003 1 次提交
  16. 21 3月, 2003 1 次提交
  17. 12 3月, 2002 1 次提交
    • D
      · 0b4c91c0
      Dr. Stephen Henson 提交于
      Fix various warnings when compiling with KRB5 code.
      0b4c91c0
  18. 05 1月, 2002 1 次提交
    • D
      · bc37d996
      Dr. Stephen Henson 提交于
      Experimental configuration code.
      
      Incomplete, largely untested and subject to change/deletion.
      bc37d996
  19. 02 10月, 2001 1 次提交
  20. 26 9月, 2001 1 次提交
  21. 18 8月, 2001 1 次提交
  22. 11 7月, 2001 1 次提交
  23. 07 5月, 2001 1 次提交
  24. 19 1月, 2001 1 次提交
  25. 09 12月, 2000 1 次提交
    • D
      · 9d6b1ce6
      Dr. Stephen Henson 提交于
      Merge from the ASN1 branch of new ASN1 code
      to main trunk.
      
      Lets see if the makes it to openssl-cvs :-)
      9d6b1ce6
  26. 27 10月, 2000 1 次提交
  27. 06 9月, 2000 1 次提交
    • D
      *BIG* verify code reorganisation. · 2f043896
      Dr. Stephen Henson 提交于
      The old code was painfully primitive and couldn't handle
      distinct certificates using the same subject name.
      
      The new code performs several tests on a candidate issuer
      certificate based on certificate extensions.
      
      It also adds several callbacks to X509_VERIFY_CTX so its
      behaviour can be customised.
      
      Unfortunately some hackery was needed to persuade X509_STORE
      to tolerate this. This should go away when X509_STORE is
      replaced, sometime...
      
      This must have broken something though :-(
      2f043896
  28. 24 7月, 2000 1 次提交
  29. 05 7月, 2000 1 次提交
    • R
      I got sick and tired of having to keep track of NIDs when such a thing · c2bbf9cf
      Richard Levitte 提交于
      could be done automagically, much like the numbering in libeay.num and
      ssleay.num.  The solution works as follows:
      
        - New object identifiers are inserted in objects.txt, following the
          syntax given in objects.README.
        - objects.pl is used to process obj_mac.num and create a new
          obj_mac.h.
        - obj_dat.pl is used to create a new obj_dat.h, using the data in
          obj_mac.h.
      
      This is currently kind of a hack, and the perl code in objects.pl
      isn't very elegant, but it works as I intended.  The simplest way to
      check that it worked correctly is to look in obj_dat.h and check the
      array nid_objs and make sure the objects haven't moved around (this is
      important!).  Additions are OK, as well as consistent name changes.
      c2bbf9cf
  30. 22 6月, 2000 1 次提交
    • 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
  31. 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
  32. 20 6月, 2000 1 次提交
  33. 18 6月, 2000 2 次提交
  34. 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