1. 10 11月, 2009 1 次提交
    • D
      PR: 2091 · 709a395d
      Dr. Stephen Henson 提交于
      Submitted by: Martin Kaiser <lists@kaiser.cx>, Stephen Henson
      Approved by: steve@openssl.org
      
      If an OID has no short name or long name return the numerical representation.
      709a395d
  2. 12 11月, 2008 1 次提交
  3. 01 11月, 2008 1 次提交
  4. 22 10月, 2008 1 次提交
  5. 20 10月, 2008 1 次提交
  6. 14 10月, 2008 1 次提交
  7. 12 10月, 2008 1 次提交
  8. 26 5月, 2008 1 次提交
  9. 17 3月, 2008 1 次提交
  10. 19 9月, 2007 1 次提交
  11. 29 3月, 2006 2 次提交
  12. 15 2月, 2006 1 次提交
  13. 20 11月, 2005 1 次提交
  14. 08 4月, 2005 1 次提交
  15. 05 4月, 2005 1 次提交
  16. 05 12月, 2004 1 次提交
  17. 16 3月, 2004 1 次提交
  18. 27 12月, 2003 1 次提交
    • R
      Use BUF_strlcpy() instead of strcpy(). · d420ac2c
      Richard Levitte 提交于
      Use BUF_strlcat() instead of strcat().
      Use BIO_snprintf() instead of sprintf().
      In some cases, keep better track of buffer lengths.
      This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
      d420ac2c
  19. 30 4月, 2003 2 次提交
  20. 13 11月, 2002 1 次提交
  21. 14 8月, 2002 1 次提交
    • D
      · 2af52de7
      Dr. Stephen Henson 提交于
      Fix typo in OBJ_txt2obj which incorrectly passed the content
      length, instead of the encoding length to d2i_ASN1_OBJECT.
      
      This wasn't visible before becuse ASN1_get_object() used
      to read past the length of the supplied buffer.
      2af52de7
  22. 30 7月, 2002 1 次提交
    • L
      OpenSSL Security Advisory [30 July 2002] · c046fffa
      Lutz Jänicke 提交于
      Changes marked "(CHATS)" were sponsored by the Defense Advanced
      Research Projects Agency (DARPA) and Air Force Research Laboratory,
      Air Force Materiel Command, USAF, under agreement number
      F30602-01-2-0537.
      c046fffa
  23. 31 5月, 2002 1 次提交
  24. 18 4月, 2002 1 次提交
  25. 12 4月, 2002 1 次提交
  26. 13 9月, 2001 1 次提交
  27. 20 2月, 2001 1 次提交
    • R
      Make all configuration macros available for application by making · cf1b7d96
      Richard Levitte 提交于
      sure they are available in opensslconf.h, by giving them names starting
      with "OPENSSL_" to avoid conflicts with other packages and by making
      sure e_os2.h will cover all platform-specific cases together with
      opensslconf.h.
      
      I've checked fairly well that nothing breaks with this (apart from
      external software that will adapt if they have used something like
      NO_KRB5), but I can't guarantee it completely, so a review of this
      change would be a good thing.
      cf1b7d96
  28. 09 1月, 2001 1 次提交
  29. 14 12月, 2000 1 次提交
  30. 09 12月, 2000 1 次提交
    • G
      Next step in tidying up the LHASH code. · d0fa136c
      Geoff Thorpe 提交于
      DECLARE/IMPLEMENT macros now exist to create type (and prototype) safe
      wrapper functions that avoid the use of function pointer casting yet retain
      type-safety for type-specific callbacks. However, most of the usage within
      OpenSSL itself doesn't really require the extra function because the hash
      and compare callbacks are internal functions declared only for use by the
      hash table. So this change catches all those cases and reimplements the
      functions using the base-level LHASH prototypes and does per-variable
      casting inside those functions to convert to the appropriate item type.
      
      The exception so far is in ssl_lib.c where the hash and compare callbacks
      are not static - they're exposed in ssl.h so their prototypes should not be
      changed. In this last case, the IMPLEMENT_LHASH_*** macros have been left
      intact.
      d0fa136c
  31. 04 12月, 2000 1 次提交
  32. 02 12月, 2000 1 次提交
    • G
      First step in tidying up the LHASH code. The callback prototypes (and · 385d8138
      Geoff Thorpe 提交于
      casts) used in the lhash code are about as horrible and evil as they can
      be. For starters, the callback prototypes contain empty parameter lists.
      Yuck.
      
      This first change defines clearer prototypes - including "typedef"'d
      function pointer types to use as "hash" and "compare" callbacks, as well as
      the callbacks passed to the lh_doall and lh_doall_arg iteration functions.
      Now at least more explicit (and clear) casting is required in all of the
      dependant code - and that should be included in this commit.
      
      The next step will be to hunt down and obliterate some of the function
      pointer casting being used when it's not necessary - a particularly evil
      variant exists in the implementation of lh_doall.
      385d8138
  33. 04 9月, 2000 1 次提交
  34. 21 6月, 2000 1 次提交
    • 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
  35. 02 6月, 2000 1 次提交
    • R
      There have been a number of complaints from a number of sources that names · 26a3a48d
      Richard Levitte 提交于
      like Malloc, Realloc and especially Free conflict with already existing names
      on some operating systems or other packages.  That is reason enough to change
      the names of the OpenSSL memory allocation macros to something that has a
      better chance of being unique, like prepending them with OPENSSL_.
      
      This change includes all the name changes needed throughout all C files.
      26a3a48d
  36. 31 1月, 2000 2 次提交
  37. 20 12月, 1999 1 次提交