1. 03 Apr, 2016 3 commits
  2. 02 Apr, 2016 7 commits
  3. 01 Apr, 2016 16 commits
  4. 31 Mar, 2016 7 commits
  5. 30 Mar, 2016 4 commits
  6. 29 Mar, 2016 3 commits
    • Jay Satiro's avatar
    • Jay Satiro's avatar
      build-wolfssl: Allow a broader range of ciphers (Visual Studio) · 27c99a37
      Jay Satiro authored
      This is an update to the build-time options used to build wolfSSL in
      Visual Studio for greater compatibility, and make it behave similar to
      the way OpenSSL 1.0.2 behaves. Starting in wolfSSL v3.6.6 static ciphers
      and SSLv3 are disabled by default at build time, but we can use both.
      
      - Enable static cipher suites TLS_ECDH_ and TLS_RSA_.
      
      - Enable SSLv3 hello. Though in libcurl we disable it by default at
      runtime, we make it available so the user can manually select it if
      necessary.
      27c99a37
    • Isaac Boukris's avatar
      GSS: make Curl_gss_log_error more verbose · d5fc6e14
      Isaac Boukris authored
      Also display the GSS_C_GSS_CODE (major code) when specified instead of
      only GSS_C_MECH_CODE (minor code).
      
      In addition, the old code was printing a colon twice after the prefix
      and also miscalculated the length of the buffer in between calls to
      gss_display_status (the length of ": " was missing).
      
      Also, gss_buffer is not guaranteed to be NULL terminated and thus need
      to restrict reading by its length.
      
      Closes #738
      d5fc6e14