1. 07 7月, 2017 2 次提交
  2. 29 6月, 2017 1 次提交
  3. 21 6月, 2017 7 次提交
  4. 19 6月, 2017 1 次提交
    • C
      s_client accepts host/port as positional argument. · 729ef856
      Cory Benfield 提交于
      This allows the user to provide the target host and optional port to
      openssl s_client as an optional positional argument, rather than as the
      argument to the -connect flag. This rationalises the user experience of
      s_client: given that the only logical purpose of s_client is to connect
      to a host, it is difficult to understand why there is an (effectively
      mandatory) command option to pass to make that happen.
      
      This patch forbids providing *both* -connect and the positional
      argument, because it would likely be too difficult to reconcile.
      Otherwise, using the positional argument behaves exactly the same as
      using -connect does.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/1171)
      729ef856
  5. 17 6月, 2017 1 次提交
  6. 13 6月, 2017 2 次提交
  7. 08 6月, 2017 1 次提交
  8. 02 6月, 2017 1 次提交
  9. 28 4月, 2017 4 次提交
  10. 27 4月, 2017 2 次提交
  11. 26 4月, 2017 1 次提交
  12. 25 4月, 2017 1 次提交
  13. 04 4月, 2017 2 次提交
  14. 31 3月, 2017 1 次提交
  15. 30 3月, 2017 1 次提交
    • M
      Fix s_client early data indicator · 12557a34
      Matt Caswell 提交于
      s_client was always saying that early_data was rejected even when it was
      accepted. This was because it was using the wrong test to detect the end
      of the handshake. It was using SSL_in_init() which only tells you whether
      it is currently processing/sending/expecting handshake messages. It should
      use SSL_is_init_finished() which tells you that no handshake messages are
      being processed/sent/expected AND we have completed the handshake. In the
      early data case we are not processing/sending handshake messages and we
      are expecting early data (not a handshake message) - but the handshake has
      not yet completed.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3090)
      12557a34
  16. 15 3月, 2017 1 次提交
  17. 05 3月, 2017 1 次提交
  18. 03 3月, 2017 5 次提交
  19. 02 3月, 2017 1 次提交
  20. 01 3月, 2017 1 次提交
  21. 22 2月, 2017 1 次提交
  22. 17 2月, 2017 2 次提交