使用HTTPS加密从移动设备发送的数据

时间:2012-05-16 15:29:56

标签: android iphone objective-c encryption https

我的应用程序同时适用于Android和Android iOS版。要从应用程序端加密发送到PHP脚本的数据,只需在“HTTP:// .....”中添加“S”,然后在发送时加密所有内容?

尝试了谷歌,但找不到任何相关内容。感谢。

1 个答案:

答案 0 :(得分:3)

不,你不能只添加一个。

https中的's'表示连接由TLS(传输层安全性)保护。这是通过使用证书和公钥加密进行身份验证来实现的。

请参阅:

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

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

对于IOS特定的实现,请参阅

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