1. 03 Oct, 2014 2 commits
    • Jeremy Lin's avatar
      ssh: improve key file search · fa7d04fe
      Jeremy Lin authored
      For private keys, use the first match from: user-specified key file
      (if provided), ~/.ssh/id_rsa, ~/.ssh/id_dsa, ./id_rsa, ./id_dsa
      
      Note that the previous code only looked for id_dsa files. id_rsa is
      now generally preferred, as it supports larger key sizes.
      
      For public keys, use the user-specified key file, if provided.
      Otherwise, try to extract the public key from the private key file.
      This means that passing --pubkey is typically no longer required,
      and makes the key-handling behavior more like OpenSSH.
      fa7d04fe
    • Daniel Stenberg's avatar
  2. 02 Oct, 2014 5 commits
  3. 01 Oct, 2014 1 commit
  4. 30 Sep, 2014 3 commits
  5. 26 Sep, 2014 1 commit
  6. 25 Sep, 2014 2 commits
  7. 23 Sep, 2014 1 commit
  8. 19 Sep, 2014 4 commits
  9. 18 Sep, 2014 2 commits
  10. 15 Sep, 2014 1 commit
  11. 13 Sep, 2014 10 commits
  12. 12 Sep, 2014 4 commits
    • Daniel Stenberg's avatar
      libcurl-tutorial.3: fix GnuTLS link to thread-safety guidelines · 06b27ea2
      Daniel Stenberg authored
      The former link was turned into a 404 at some point.
      
      Reported-By: Askar Safin
      06b27ea2
    • Daniel Stenberg's avatar
      contributors.sh: split list of names at comma · 1b314a85
      Daniel Stenberg authored
      ... to support a list of names provided in a commit message.
      1b314a85
    • Ulrich Telle's avatar
      ntlm: Fixed HTTP proxy authentication when using Windows SSPI · 8ee18228
      Ulrich Telle authored
      Removed ISC_REQ_* flags from calls to InitializeSecurityContext to fix
      bug in NTLM handshake for HTTP proxy authentication.
      
      NTLM handshake for HTTP proxy authentication failed with error
      SEC_E_INVALID_TOKEN from InitializeSecurityContext for certain proxy
      servers on generating the NTLM Type-3 message.
      
      The flag ISC_REQ_CONFIDENTIALITY seems to cause the problem according
      to the observations and suggestions made in a bug report for the
      QT project (https://bugreports.qt-project.org/browse/QTBUG-17322).
      
      Removing all the flags solved the problem.
      
      Bug: http://curl.haxx.se/mail/lib-2014-08/0273.html
      Reported-by: Ulrich Telle
      Assisted-by: Steve Holme, Daniel Stenberg
      8ee18228
    • Ray Satiro's avatar
      newlines: fix mixed newlines to LF-only · 006b61eb
      Ray Satiro authored
      I use the curl repo mainly on Windows with the typical Windows git
      checkout which converts the LF line endings in the curl repo to CRLF
      automatically on checkout. The automatic conversion is not done on files
      in the repo with mixed line endings. I recently noticed some weird
      output with projects/build-openssl.bat that I traced back to mixed line
      endings, so I scanned the repo and there are files (excluding the
      test data) that have mixed line endings.
      
      I used this command below to do the scan. Unfortunately it's not as easy
      as git grep, at least not on Windows. This gets the names of all the
      files in the repo's HEAD, gets each of those files raw from HEAD, checks
      for mixed line endings of both LF and CRLF, and prints the name if
      mixed. I excluded path tests/data/test* because those can have mixed
      line endings if I understand correctly.
      
      for f in `git ls-tree --name-only --full-tree -r HEAD`;
      do if [ -n "${f##tests/data/test*}" ];
          then git show "HEAD:$f" | \
           ...
      006b61eb
  13. 11 Sep, 2014 2 commits
  14. 10 Sep, 2014 2 commits