diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-01-16 14:16:31 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-01-16 23:23:29 +0100 |
commit | 5940e06f01ee02f2b5d778523c059ba55e58bc95 (patch) | |
tree | 3e0634051a54d643adde80ea56825be642b90d3c /docs | |
parent | 5c73cdef6293ebf3f2f2eba582d2c73e7862653c (diff) |
TheArtOfHttpScripting: phrase it TLS lib agnostic
Diffstat (limited to 'docs')
-rw-r--r-- | docs/TheArtOfHttpScripting | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/TheArtOfHttpScripting b/docs/TheArtOfHttpScripting index 7235f12f9..fb39bfe6d 100644 --- a/docs/TheArtOfHttpScripting +++ b/docs/TheArtOfHttpScripting @@ -557,8 +557,10 @@ The Art Of Scripting HTTP Requests Using Curl truckload of advanced features to allow all those encryptions and key infrastructure mechanisms encrypted HTTP requires. - Curl supports encrypted fetches thanks to the freely available OpenSSL - libraries. To get a page from a HTTPS server, simply run curl like: + Curl supports encrypted fetches when built to use a TLS library and it can be + built to use one out of a fairly large set of libraries - "curl -V" will show + which one your curl was built to use (if any!). To get a page from a HTTPS + server, simply run curl like: curl https://secure.example.com |