What kinds of cryptographic algorithm i can use to sends/receives data to/from webserver?
What kinds of cryptog开发者_运维百科raphic algorithm i can use to sends/receives data to/from webserver in iOS?(My webserver don't use https)
NSURLConnection natively supports https.
Edit:
If you are looking to encrypt HTTP content across a normal HTTP connection, you can use Apple's crypto services. It looks like your options are limited on iOS. You might need to use libcrypto directly.
精彩评论