Edward Q. Bridges
Edward Q. Bridges

Reputation: 18310

Encryption of HTTPS headers

To what extent, if at all, are HTTPS headers encrypted?

Upvotes: 6

Views: 7141

Answers (3)

Arthur Ulfeldt
Arthur Ulfeldt

Reputation: 91534

SSL sets up a private authenticated link to the server and then sends an http request over that link. The evil-doer snooping on the link cant actually tell from just watching the connection that http is being used. SSL its self has some unencrypted headers that it uses to establish this connection though these should not be confused with the headers that are part of the http protocol.

Upvotes: 2

cgp
cgp

Reputation: 41381

All headers are encrypted in HTTPS. You may want to look at some documentation on how SSL and TLS work.

Upvotes: 2

Kekoa
Kekoa

Reputation: 28230

They are encrypted in transit through SSL. There is no special encryption dedicated to headers, HTTPS encrypts the entire message.

Upvotes: 9

Related Questions