-1
I intend to implement private asynchronous communication (in python) in order to test some cryptographic algorithms. The goal would be to have an Emmiter that sends the encrypted message and have a Receiver that receives that message and decrypts it. At this point I am in doubt whether I should use Socket or simply a Pipe... Which is the best option?