~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to docs/TheArtOfHttpScripting

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mto: (1.2.1 upstream) (3.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-geixkwhe3izccjt7
Tags: upstream-7.19.4
ImportĀ upstreamĀ versionĀ 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
375
375
 11.1 Certificates
376
376
 
377
377
  In the HTTPS world, you use certificates to validate that you are the one
378
 
  you you claim to be, as an addition to normal passwords. Curl supports
379
 
  client-side certificates. All certificates are locked with a pass phrase,
380
 
  which you need to enter before the certificate can be used by curl. The pass
381
 
  phrase can be specified on the command line or if not, entered interactively
382
 
  when curl queries for it. Use a certificate with curl on a HTTPS server
383
 
  like:
 
378
  you claim to be, as an addition to normal passwords. Curl supports client-
 
379
  side certificates. All certificates are locked with a pass phrase, which you
 
380
  need to enter before the certificate can be used by curl. The pass phrase
 
381
  can be specified on the command line or if not, entered interactively when
 
382
  curl queries for it. Use a certificate with curl on a HTTPS server like:
384
383
 
385
384
        curl -E mycert.pem https://that.secure.server.com
386
385