In an app for a website, there is a method which needs to send user password to server(server is in .NET)
As sending plain text to server can expose user password over the network. Considering user privacy. We wish to encrypt the password with any encrypt algo before sending over the network.
Algo should conform following points 1. Should not generate any invalid XML character 2. Should give same result @ server side and iPhone side. As we tried simple XOR encryption with int key 129 it gives different result on iPHone compared to server side.
Please let me know if there are any recomendations on that.