Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an app that is on both Android & iOS. To encrypt the data that is sent to a PHP script, from the app side of things, is it just a case of adding an "S" to "HTTP://....." and then everything is encrypted when sent up?

Tried Google but couldn't find anything related. Thanks.

share|improve this question

1 Answer

up vote 3 down vote accepted

No you can't just add an s.

the 's' in https signifies that the connection is secured by TLS (Transportation Layer Security) . This is achieved via authentication using certificates and Public Key Cryptography.

See:

http://computer.howstuffworks.com/encryption.htm

http://en.wikipedia.org/wiki/Public-key_cryptography

for IOS specific implementations see

https://developer.apple.com/library/ios/#documentation/Security/Conceptual/keychainServConcepts/02concepts/concepts.html#//apple_ref/doc/uid/TP30000897-CH204-TP9

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.