Doubt Http x Https Android

-2

I'm creating an Android app. This one calls PHP files via HttpPost.

I ask: what changes I call with https instead of http (I will use https, already with certificate on the server installed).

The doubt would be in practice, what changes in these data? Are they encrypted? Even the parameters?

How can I see the output of this encryption.

    
asked by anonymous 15.03.2016 / 20:57

1 answer

1

Https communication is encrypted. In practice any intermediary that intercepts your packages and does not have the private key will not be able to read your message.

To see the output, simply install a sniffer on your machine, type wireshark, and listen for https and http connections. You will soon see that the https message is encrypted.

    
15.03.2016 / 21:10