Hi all,
I am writing a client / server based program, Server side is with Php and Client is with Python, and I need to make sure the transfer data is safe both way.
So, My question is
What encryption algorithm would be best for data transfer between Python and Php?
- I couldn't use Https
- Need to decrypt/encrypt with key on both Python and Php
- I would't need to have
sharedpublic key, key could be set in both Python and Php manually - Since I don't know how to implement algorithm myself, examples on both language would be great.
- My data are not serious like banking site, but just want to encrypt to be safe on the wire from sniffing
I've tried to check this question but I couldn't find suitable answer for me
Thanks in advance.