Mansi Singhal
Mansi Singhal

Reputation: 21

How to process packets received from Https request in java?

Since packets received by making https request are in encrypted form. I wanna know how to decode them in java.

Upvotes: 1

Views: 154

Answers (1)

JB Nizet
JB Nizet

Reputation: 691635

The communication is encrypted and decrypted for you by the HttpsURLConnection object. You don't have to deal with encryption and decryption yourself.

Upvotes: 3

Related Questions