1. 29 9月, 2017 1 次提交
  2. 18 5月, 2016 1 次提交
  3. 17 5月, 2016 1 次提交
  4. 30 3月, 2016 1 次提交
  5. 09 3月, 2016 1 次提交
    • M
      Remove the old threading API · 2e52e7df
      Matt Caswell 提交于
      All OpenSSL code has now been transferred to use the new threading API,
      so the old one is no longer used and can be removed. We provide some compat
      macros for removed functions which are all no-ops.
      
      There is now no longer a need to set locking callbacks!!
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      2e52e7df
  6. 27 1月, 2016 1 次提交
    • R
      Remove /* foo.c */ comments · 34980760
      Rich Salz 提交于
      This was done by the following
              find . -name '*.[ch]' | /tmp/pl
      where /tmp/pl is the following three-line script:
              print unless $. == 1 && m@/\* .*\.[ch] \*/@;
              close ARGV if eof; # Close file to reset $.
      
      And then some hand-editing of other files.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      34980760
  7. 14 5月, 2015 1 次提交
  8. 22 1月, 2015 1 次提交
  9. 15 1月, 2015 1 次提交
    • R
      Cleanup OPENSSL_NO_xxx, part 1 · 4b618848
      Rich Salz 提交于
      OPENSSL_NO_RIPEMD160, OPENSSL_NO_RIPEMD merged into OPENSSL_NO_RMD160
      OPENSSL_NO_FP_API merged into OPENSSL_NO_STDIO
      Two typo's on #endif comments fixed:
      	OPENSSL_NO_ECB fixed to OPENSSL_NO_OCB
      	OPENSSL_NO_HW_SureWare fixed to OPENSSL_NO_HW_SUREWARE
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      4b618848
  10. 15 5月, 2010 1 次提交
    • D
      PR: 2253 · 19674b5a
      Dr. Stephen Henson 提交于
      Submitted By: Ger Hobbelt <ger@hobbelt.com>
      
      Check callback return value when outputting errors.
      19674b5a
  11. 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
  12. 04 7月, 2008 1 次提交
  13. 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
  14. 17 5月, 2005 1 次提交
  15. 14 10月, 2002 1 次提交
  16. 25 6月, 2001 1 次提交
  17. 23 6月, 2001 1 次提交
  18. 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
  19. 15 4月, 2000 1 次提交
  20. 24 4月, 1999 1 次提交
  21. 20 4月, 1999 1 次提交
  22. 18 4月, 1999 1 次提交
  23. 21 12月, 1998 2 次提交