Search code examples
androidwebserverdata-transfer

transferring Secure data between web server and app


i want transfer data between web server and app,data is strings and Numbers.i can use XML files,but it not secure.what is secure way for it?


Solution

  • Take a look at the CipherStreams. They are built in encrypted streams which allow you to securely send data between devices

    CipherOutputStream

    Hope this is applicable for you ;)