Home > Python > Encryption Algorithm Protocol

Encryption Algorithm Protocol

May 14th, 2009

Start-up TCP/IP socket client and server demo programs attached as server.py and client.py

Check that you are able to send a message from the client to the server and that the server can print out that message on the console. At this point the client is sending messages to the server in the clear. The next stage is to modify these programs so that the client will first encrypt the message before sending it and the server will decrypt the message after receiving it. To do this you will implement the RSA algorithm that uses public and private


Encryption Algorithm Protocol

Comments are closed.
Bear