1. 15 11月, 2016 1 次提交
  2. 10 11月, 2016 1 次提交
  3. 02 11月, 2016 1 次提交
  4. 20 8月, 2016 1 次提交
  5. 13 8月, 2016 1 次提交
  6. 04 8月, 2016 1 次提交
  7. 18 5月, 2016 1 次提交
  8. 21 4月, 2016 1 次提交
  9. 10 4月, 2016 1 次提交
  10. 09 4月, 2016 1 次提交
  11. 22 3月, 2016 1 次提交
  12. 17 3月, 2016 1 次提交
  13. 10 3月, 2016 1 次提交
  14. 04 3月, 2016 1 次提交
  15. 27 2月, 2016 1 次提交
  16. 23 2月, 2016 1 次提交
  17. 17 2月, 2016 1 次提交
  18. 09 2月, 2016 1 次提交
    • V
      Suppress DANE TLSA reflection when verification fails · c0a445a9
      Viktor Dukhovni 提交于
      As documented both SSL_get0_dane_authority() and SSL_get0_dane_tlsa()
      are expected to return a negative match depth and nothing else when
      verification fails.  However, this only happened when verification
      failed during chain construction.  Errors in verification of the
      constructed chain did not have the intended effect on these functions.
      
      This commit updates the functions to check for verify_result ==
      X509_V_OK, and no longer erases any accumulated match information
      when chain construction fails.  Sophisticated developers can, with
      care, use SSL_set_verify_result(ssl, X509_V_OK) to "peek" at TLSA
      info even when verification fail.  They must of course first check
      and save the real error, and restore the original error as quickly
      as possible.  Hiding by default seems to be the safer interface.
      
      Introduced X509_V_ERR_DANE_NO_MATCH code to signal failure to find
      matching TLSA records.  Previously reported via X509_V_ERR_CERT_UNTRUSTED.
      
      This also changes the "-brief" output from s_client to include
      verification results and TLSA match information.
      
      Mentioned session resumption in code example in SSL_CTX_dane_enable(3).
      Also mentioned that depths returned are relative to the verified chain
      which is now available via SSL_get0_verified_chain(3).
      
      Added a few more test-cases to danetest, that exercise the new
      code.
      
      Resolved thread safety issue in use of static buffer in
      X509_verify_cert_error_string().
      
      Fixed long-stating issue in apps/s_cb.c which always sets verify_error
      to either X509_V_OK or "chain to long", code elsewhere (e.g.
      s_time.c), seems to expect the actual error.  [ The new chain
      construction code is expected to correctly generate "chain
      too long" errors, so at some point we need to drop the
      work-arounds, once SSL_set_verify_depth() is also fixed to
      propagate the depth to X509_STORE_CTX reliably. ]
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      c0a445a9
  19. 06 2月, 2016 1 次提交
  20. 04 2月, 2016 2 次提交
  21. 01 2月, 2016 1 次提交
  22. 21 1月, 2016 1 次提交
  23. 23 12月, 2015 1 次提交
  24. 15 12月, 2015 2 次提交
  25. 10 11月, 2015 1 次提交
  26. 09 10月, 2015 1 次提交
  27. 29 9月, 2015 1 次提交
  28. 20 9月, 2015 1 次提交
  29. 11 9月, 2015 1 次提交
  30. 04 9月, 2015 1 次提交
  31. 26 8月, 2015 1 次提交
  32. 12 8月, 2015 1 次提交
  33. 16 6月, 2015 1 次提交
    • R
      RT2547: Tighten perms on generated privkey files · 3b061a00
      Rich Salz 提交于
      When generating a private key, try to make the output file be readable
      only by the owner.  Put it in CHANGES file since it might be noticeable.
      
      Add "int private" flag to apps that write private keys, and check that it's
      set whenever we do write a private key.  Checked via assert so that this
      bug (security-related) gets fixed.  Thanks to Viktor for help in tracing
      the code-paths where private keys are written.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      3b061a00
  34. 10 6月, 2015 1 次提交
  35. 21 5月, 2015 1 次提交
  36. 11 5月, 2015 1 次提交
  37. 07 5月, 2015 1 次提交
  38. 05 5月, 2015 1 次提交
    • R
      Use safer sizeof variant in malloc · b4faea50
      Rich Salz 提交于
      For a local variable:
              TYPE *p;
      Allocations like this are "risky":
              p = OPENSSL_malloc(sizeof(TYPE));
      if the type of p changes, and the malloc call isn't updated, you
      could get memory corruption.  Instead do this:
              p = OPENSSL_malloc(sizeof(*p));
      Also fixed a few memset() calls that I noticed while doing this.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b4faea50