1. 21 5月, 2016 3 次提交
    • R
      Add OpenSSL copyright to .pl files · 6aa36e8e
      Rich Salz 提交于
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      6aa36e8e
    • R
      Doc nits cleanup, round 2 · 05ea606a
      Rich Salz 提交于
      Fix some code examples, trailing whitespace
      Fix TBA sections in verify, remove others.
      Remove empty sections
      Use Mixed Case not ALL CAPS in head2
      Enhance doc-nits script.
      Remove extra =cut line
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      05ea606a
    • 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
  2. 20 5月, 2016 16 次提交
  3. 19 5月, 2016 19 次提交
  4. 18 5月, 2016 2 次提交