Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 364 Bytes

README.md

File metadata and controls

29 lines (16 loc) · 364 Bytes

File-Encryption

Commands to Run :

  • for server : python3 server.py
  • for client : python3 client.py

Packet structure used in message passing :

/*A general message */

typedef struct {

Hdr hdr; /* Header for a message */

typedef union {

PubKey pubkey;

ReqServ reqserv;

ReqCom reqcom;

EncMsg encmsg;

Disconnect disconnect;

} AllMsg;

} Msg;