I have an app that’s gathering registration data (username/password, etc). I need to gather the registration data as JSON and post it to my webservice for processing. What’s the best way to secure the data transmission? What are some strategies for securing the data?
Thanks
I think the best way is sending the json request over https. If thats not an option you could encrypt the data using a 2 way algorithm directly in javascript before sending but remember that you cant hide javascript code so your “security” could be broken very easy and of course you will be reinventing the wheel