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