1. 22 Feb, 2016 1 commit
  2. 19 Feb, 2016 3 commits
  3. 18 Feb, 2016 1 commit
  4. 16 Feb, 2016 1 commit
  5. 13 Feb, 2016 1 commit
  6. 12 Feb, 2016 2 commits
  7. 11 Feb, 2016 2 commits
  8. 10 Feb, 2016 1 commit
  9. 08 Feb, 2016 1 commit
    • Matt Caswell's avatar
      Handle SSL_shutdown while in init more appropriately #2 · 64193c82
      Matt Caswell authored
      Previous commit f73c737c attempted to "fix" a problem with the way
      SSL_shutdown() behaved whilst in mid-handshake. The original behaviour had
      SSL_shutdown() return immediately having taken no action if called mid-
      handshake with a return value of 1 (meaning everything was shutdown
      successfully). In fact the shutdown has not been successful.
      
      Commit f73c737c
      
       changed that to send a close_notify anyway and then
      return. This seems to be causing some problems for some applications so
      perhaps a better (much simpler) approach is revert to the previous
      behaviour (no attempt at a shutdown), but return -1 (meaning the shutdown
      was not successful).
      
      This also fixes a bug where SSL_shutdown always returns 0 when shutdown
      *very* early in the handshake (i.e. we are still using SSLv23_method).
      
      Reviewed-by: default avatarViktor Dukhovni <viktor@openssl.org>
      64193c82
  10. 06 Feb, 2016 1 commit
  11. 05 Feb, 2016 1 commit
    • Viktor Dukhovni's avatar
      Fix missing ok=0 with locally blacklisted CAs · a3baa171
      Viktor Dukhovni authored
      
      
      Also in X509_verify_cert() avoid using "i" not only as a loop
      counter, but also as a trust outcome and as an error ordinal.
      
      Finally, make sure that all "goto end" jumps return an error, with
      "end" renamed to "err" accordingly.
      
      [ The 1.1.0 version of X509_verify_cert() is major rewrite,
        which addresses these issues in a more systemic way. ]
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      a3baa171
  12. 04 Feb, 2016 1 commit
  13. 02 Feb, 2016 2 commits
  14. 01 Feb, 2016 2 commits
  15. 30 Jan, 2016 1 commit
  16. 29 Jan, 2016 5 commits
  17. 28 Jan, 2016 9 commits
  18. 22 Jan, 2016 1 commit
  19. 21 Jan, 2016 1 commit
  20. 20 Jan, 2016 2 commits
  21. 19 Jan, 2016 1 commit
    • Richard Levitte's avatar
      Fix BSD -rpath parameter · 930d87c1
      Richard Levitte authored
      
      
      For BSD systems, Configure adds a shared_ldflags including a reference
      to the Makefile variable LIBRPATH, but since it must be passed down to
      Makefile.shared, care must be taken so the value of LIBRPATH doesn't
      get expanded too early, or it ends up giving an empty string.
      
      Reviewed-by: default avatarViktor Dukhovni <viktor@openssl.org>
      (cherry picked from commit c64879d3)
      930d87c1