1. 08 6月, 2016 2 次提交
  2. 06 6月, 2016 1 次提交
  3. 05 6月, 2016 7 次提交
  4. 04 6月, 2016 5 次提交
  5. 01 6月, 2016 1 次提交
  6. 30 5月, 2016 4 次提交
  7. 28 5月, 2016 1 次提交
  8. 24 5月, 2016 2 次提交
  9. 23 5月, 2016 1 次提交
  10. 22 5月, 2016 1 次提交
  11. 21 5月, 2016 1 次提交
    • M
      Fix Windows 64 bit crashes · fcb318c6
      Matt Caswell 提交于
      The function InitOnceExceuteOnce is the best way to support the
      implementation of CRYPTO_THREAD_run_once() on Windows. Unfortunately
      WinXP doesn't have it. To get around that we had two different
      implementations: one for WinXP and one for later versions. Which one was
      used was based on the value of _WIN32_WINNT.
      
      This approach was starting to cause problems though because other parts of
      OpenSSL assume _WIN32_WINNT is going to be 0x0501 and crashes were
      occurring dependant on include file ordering. In addition a conditional
      based on _WIN32_WINNT had made its way into a public header file through
      commit 5c4328f0. This is problematic because the value of this macro can
      vary between OpenSSL build time and application build time.
      
      The simplest solution to this mess is just to always use the WinXP version
      of CRYPTO_THREAD_run_once(). Its perhaps slightly sub-optimal but probably
      not noticably.
      
      GitHub Issue #1086
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      fcb318c6
  12. 20 5月, 2016 1 次提交
    • R
      Rename lh_xxx,sk_xxx tp OPENSSL_{LH,SK}_xxx · 739a1eb1
      Rich Salz 提交于
      Rename sk_xxx to OPENSSL_sk_xxx and _STACK to OPENSSL_STACK
      Rename lh_xxx API to OPENSSL_LH_xxx and LHASH_NODE to OPENSSL_LH_NODE
      Make lhash stuff opaque.
      Use typedefs for function pointers; makes the code simpler.
      Remove CHECKED_xxx macros.
      Add documentation; remove old X509-oriented doc.
      Add API-compat names for entire old API
      Reviewed-by: NDr. Stephen Henson <steve@openssl.org>
      739a1eb1
  13. 19 5月, 2016 6 次提交
  14. 18 5月, 2016 5 次提交
  15. 17 5月, 2016 2 次提交