Reputation: 4938
I have a binary full-duplex unsecure protocol. Now I have to make it
For this purpose I want to use HTTP as a transport protocol.
Regards.
Upvotes: 0
Views: 387
Reputation: 7661
Like Bruno says in his comment: Use SSL. Plenty of libraries for all platforms. All the security without the complexity of HTTP you have absolutely no use for anyway. Use port 443 on the server, and no third party or intermediary will be able to distinguish your traffic from HTTPS traffic. (don't confuse "port" and "protocol".)
Also if you don't mind sharing more information about the purpose and nature of this "full duplex binary protocol", we could recommend even better existing solutions, like SRPT.
Upvotes: 2