Whats the difference between GET and POST encryption?

后端 未结 5 1799
借酒劲吻你
借酒劲吻你 2020-12-02 13:40

What is the difference when encrypting GET and POST data? Thx for answer

Edit: i need to write it more specific.

When https-SSL encrypts both of this methods

5条回答
  •  鱼传尺愫
    2020-12-02 14:10

    The difference is that an encrypted parameter that is sent with GET verb will be visible in the address bar while the one sent with the POST verb will not (of course this doesn't mean that the user cannot see the encrypted value). Another difference is in the allowed maximum length: GET requests are limited as urls are limited in browsers. Third difference: GET requests are logged in intermediary web servers they transit (web, proxy, ...) so if you use GET over the internet your encrypted parameter will definitely be logged on many machines before it arrives to your web server.

提交回复
热议问题