1. 15 Oct, 2014 2 commits
  2. 14 Oct, 2014 5 commits
  3. 13 Oct, 2014 7 commits
  4. 12 Oct, 2014 1 commit
  5. 10 Oct, 2014 3 commits
  6. 09 Oct, 2014 12 commits
  7. 08 Oct, 2014 7 commits
  8. 07 Oct, 2014 3 commits
    • Daniel Stenberg's avatar
      curl_easy_getinfo.3: spell-fix · e0d269c0
      Daniel Stenberg authored
      Reported-By: Luan Cestari
      e0d269c0
    • moparisthebest's avatar
      GnuTLS: Implement public key pinning · e644866c
      moparisthebest authored
      e644866c
    • moparisthebest's avatar
      SSL: implement public key pinning · 93e45079
      moparisthebest authored
      Option --pinnedpubkey takes a path to a public key in DER format and
      only connect if it matches (currently only implemented with OpenSSL).
      
      Provides CURLOPT_PINNEDPUBLICKEY for curl_easy_setopt().
      
      Extract a public RSA key from a website like so:
      openssl s_client -connect google.com:443 2>&1 < /dev/null | \
      sed -n '/-----BEGIN/,/-----END/p' | openssl x509 -noout -pubkey \
      | openssl rsa -pubin -outform DER > google.com.der
      93e45079