0

Basically a php programmer does not need to handle the encrypting and decrypting of the messages? The web server handles all the encryption and decryption, and that means by the requested php page from the server is reached, the message is already decrypted?

dave
  • 14,991
  • 26
  • 76
  • 110
  • Could you please stop posting new questions? It's sufficient to read the answers to your comments. There's a shiny red thingy in the upper left corner of the Stackoverflow page. – mario Feb 07 '11 at 02:58

2 Answers2

2

yes. can't see how any one could answer more fully :-)

0

Yes, the web server will handle SSL 99%. So you don't have to make any modifications to your code. However, be aware that on a SSL page, the encryption expects all objects on the page to be secure. I.e. loading an external source img will throw off your SSL.

Michael Mikhjian
  • 2,760
  • 4
  • 36
  • 51