• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Client-server protocol

ali_0102

Lurker
Hello everyone,
Before anything please accept my apology if I post this topic in a wrong forum.

In my project, we need to develop an app that should connect to a server (C++ written server) and transfer sensitive information to and from the server. Here is some prerequisite for the protocol we need:
1- TLS enabled
2- Very light in term of protocol size for handling request and response
3- Authentication

Is there any developed protocol for android to meet mentioned needs ? or we must use raw TCP socket programming to develop our programming?


Thanks in advance for your help and guidance
 
Does your server have a web interface? If so you can use SSL over HTTP.
SSL is a transport layer security protocol, providing encrypted data transfer.
You can also use digital certificates to authenticate.
 
Back
Top Bottom