How much network overhead does TLS add compared to a non-encrypted connection?

后端 未结 4 402
野性不改
野性不改 2021-02-05 05:55

(Approximately) how many more bits of data must be transferred over the network during an encrypted connection compared to an unencrypted connection?

IIUC, once the TLS

4条回答
  •  死守一世寂寞
    2021-02-05 06:50

    I've gotten this question a few times, so I decided to write up a small explanation of the overhead with some sample numbers based on common case. You can read it on my blog at http://netsekure.org/2010/03/tls-overhead/.

    Summary from blog post:

    • The total overhead to establish a new TLS session comes to about 6.5k bytes on average.
    • The total overhead to resume an existing TLS session comes to about 330 bytes on average.
    • The total overhead of the encrypted data is about 40 bytes.

提交回复
热议问题