Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-10 | wolfssl: refer to it as wolfSSL only | Daniel Stenberg | |
Remove support for, references to and use of "cyaSSL" from the source and docs. wolfSSL is the current name and there's no point in keeping references to ancient history. Assisted-by: Daniel Gustafsson Closes #3903 | |||
2019-05-22 | PolarSSL: deprecate support step 1. Removed from configure. | Daniel Stenberg | |
Also removed mentions from most docs. Discussed: https://curl.haxx.se/mail/lib-2019-05/0045.html Closes #3888 | |||
2019-02-01 | schannel: stop calling it "winssl" | Daniel Stenberg | |
Stick to "Schannel" everywhere. The configure option --with-winssl is kept to allow existing builds to work but --with-schannel is added as an alias. Closes #3504 | |||
2018-01-25 | GSKit: restore pinnedpubkey functionality | moparisthebest | |
inadvertently removed in 283babfaf8d8f3bab9d3c63cea94eb0b84e79c37 Closes #2263 | |||
2018-01-25 | SChannel/WinSSL: Implement public key pinning | moparisthebest | |
Closes #1429 | |||
2017-05-15 | SecureTransport/DarwinSSL: Implement public key pinning | moparisthebest | |
Closes #1400 | |||
2017-01-13 | docs: Add note about libcurl copying strings to CURLOPT_* manpages | Frank Gevaerts | |
Closes #1169 | |||
2016-09-18 | CURLOPT_PINNEDPUBLICKEY.3: fix the AVAILABILITY formatting | Jay Satiro | |
2016-04-24 | PolarSSL: Implement public key pinning | moparisthebest | |
2016-02-03 | URLs: change all http:// URLs to https:// | Daniel Stenberg | |
2016-01-10 | mbedtls: implement CURLOPT_PINNEDPUBLICKEY | Thomas Glanzmann | |
2015-11-07 | opts: Corrected TLS protocols list to include POP3S rather than POP3 | Steve Holme | |
2015-09-20 | CURLOPT_PINNEDPUBLICKEY.3: replace test.com with example.com | Viktor Szakats | |
closes #443 | |||
2015-09-17 | CURLOPT_PINNEDPUBLICKEY.3: mention error code | Daniel Stenberg | |
2015-09-14 | CURLOPT_PINNEDPUBLICKEY.3: Improve pubkey extraction example | Jay Satiro | |
- Show how a certificate can be obtained using OpenSSL. Bug: https://github.com/bagder/curl/pull/430 Reported-by: Daniel Hwang | |||
2015-08-12 | docs: fix typos | Alessandro Ghedini | |
closes #376 | |||
2015-07-01 | SSL: Pinned public key hash support | moparisthebest | |
2015-04-22 | cyassl: Implement public key pinning | Jay Satiro | |
Also add public key extraction example to CURLOPT_PINNEDPUBLICKEY doc. | |||
2015-04-22 | nss: implement public key pinning for NSS backend | Kamil Dudka | |
Bug: https://bugzilla.redhat.com/1195771 | |||
2014-11-24 | SSL: Add PEM format support for public key pinning | moparisthebest | |
2014-10-30 | CURLOPT_PINNEDPUBLICKEY.3: added details | Daniel Stenberg | |
2014-10-07 | SSL: implement public key pinning | moparisthebest | |
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 |