Saajaadeen / Ciphered-Messenger

This python program ciphers messages and sends them over tcp-ip and deciphers them at the server to display the message to the client.
0 stars 0 forks source link

Sending large/small messages #2

Open Saajaadeen opened 2 weeks ago

Saajaadeen commented 2 weeks ago

Small Messages: Right now if you send small messages there is a chance your messages could be easily deciphered due to the small size of the message being sent, but I think ive come up with a way to fix that. By making a condition where if the message is less than 10 characters (not including spaces) the message count will be increased from 250-1000 to 500-1000 this will astronomically increase the size of the packet being sent and will exceed the packet limit but will help with messages staying hidden.

Large Messages: Sending large messages is taxing on network resources so I need to figure out how to cut down the size of the packets being sent and keep the cipher integrity intact since the bulk of the message isn't the message but the randomness itself. 250-1000 characters is a lot of characters before and after each character messages tend to get big.