Skip to content
  1. Oct 15, 2014
  2. Oct 14, 2014
  3. Oct 13, 2014
  4. Oct 12, 2014
  5. Oct 10, 2014
  6. Oct 09, 2014
  7. Oct 08, 2014
  8. Oct 07, 2014
    • Daniel Stenberg's avatar
      curl_easy_getinfo.3: spell-fix · e0d269c0
      Daniel Stenberg authored
      Reported-By: Luan Cestari
      e0d269c0
    • Travis Burtrum's avatar
      GnuTLS: Implement public key pinning · e644866c
      Travis Burtrum authored
      e644866c
    • Travis Burtrum's avatar
      SSL: implement public key pinning · 93e45079
      Travis Burtrum 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