1. 12 1月, 2014 1 次提交
  2. 11 1月, 2014 1 次提交
  3. 21 10月, 2013 1 次提交
  4. 20 9月, 2013 1 次提交
  5. 16 2月, 2011 1 次提交
  6. 27 1月, 2011 2 次提交
  7. 26 1月, 2011 1 次提交
  8. 16 6月, 2010 1 次提交
  9. 24 9月, 2009 1 次提交
  10. 03 1月, 2009 1 次提交
  11. 12 11月, 2008 1 次提交
  12. 04 11月, 2008 1 次提交
  13. 03 11月, 2008 1 次提交
  14. 02 11月, 2008 1 次提交
  15. 06 8月, 2008 1 次提交
    • G
      Remove the dual-callback scheme for numeric and pointer thread IDs, · 4c329696
      Geoff Thorpe 提交于
      deprecate the original (numeric-only) scheme, and replace with the
      CRYPTO_THREADID object. This hides the platform-specifics and should reduce
      the possibility for programming errors (where failing to explicitly check
      both thread ID forms could create subtle, platform-specific bugs).
      
      Thanks to Bodo, for invaluable review and feedback.
      4c329696
  16. 04 7月, 2008 1 次提交
  17. 28 3月, 2008 1 次提交
    • G
      There was a need to support thread ID types that couldn't be reliably cast · f7ccba3e
      Geoff Thorpe 提交于
      to 'unsigned long' (ie. odd platforms/compilers), so a pointer-typed
      version was added but it required portable code to check *both* modes to
      determine equality. This commit maintains the availability of both thread
      ID types, but deprecates the type-specific accessor APIs that invoke the
      callbacks - instead a single type-independent API is used.  This simplifies
      software that calls into this interface, and should also make it less
      error-prone - as forgetting to call and compare *both* thread ID accessors
      could have led to hard-to-debug/infrequent bugs (that might only affect
      certain platforms or thread implementations). As the CHANGES note says,
      there were corresponding deprecations and replacements in the
      thread-related functions for BN_BLINDING and ERR too.
      f7ccba3e
  18. 21 1月, 2007 1 次提交
  19. 23 6月, 2006 1 次提交
  20. 08 4月, 2005 1 次提交
  21. 16 3月, 2004 2 次提交
  22. 30 10月, 2003 1 次提交
    • G
      A general spring-cleaning (in autumn) to fix up signed/unsigned warnings. · 27545970
      Geoff Thorpe 提交于
      I have tried to convert 'len' type variable declarations to unsigned as a
      means to address these warnings when appropriate, but when in doubt I have
      used casts in the comparisons instead. The better solution (that would get
      us all lynched by API users) would be to go through and convert all the
      function prototypes and structure definitions to use unsigned variables
      except when signed is necessary. The proliferation of (signed) "int" for
      strictly non-negative uses is unfortunate.
      27545970
  23. 28 11月, 2002 1 次提交
  24. 10 9月, 2001 1 次提交
  25. 08 9月, 2001 1 次提交
  26. 07 9月, 2001 1 次提交
  27. 06 8月, 2001 1 次提交
  28. 31 7月, 2001 1 次提交
  29. 26 7月, 2001 1 次提交
  30. 24 7月, 2001 1 次提交
  31. 10 7月, 2001 1 次提交
  32. 20 6月, 2001 1 次提交
    • D
      · 323f289c
      Dr. Stephen Henson 提交于
      Change all calls to low level digest routines in the library and
      applications to use EVP. Add missing calls to HMAC_cleanup() and
      don't assume HMAC_CTX can be copied using memcpy().
      
      Note: this is almost identical to the patch submitted to openssl-dev
      by Verdon Walker <VWalker@novell.com> except some redundant
      EVP_add_digest_()/EVP_cleanup() calls were removed and some changes
      made to avoid compiler warnings.
      323f289c
  33. 08 6月, 2001 1 次提交
  34. 18 4月, 2001 1 次提交
  35. 15 3月, 2001 1 次提交
  36. 22 2月, 2001 1 次提交
  37. 20 2月, 2001 2 次提交
    • R
      Use new-style system-id macros everywhere possible. I hope I haven't · bc36ee62
      Richard Levitte 提交于
      missed any.
      
      This compiles and runs on Linux, and external applications have no
      problems with it.  The definite test will be to build this on VMS.
      bc36ee62
    • 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