Privacy oriented Client-Server program which will facilitate a client to register itself to the server. A server should keep a table of user-hash (password) entry for each user.
In this fork, unlike the main version, no password is sent in clear text.
This program registers user with username, password and stores password hash in dictonary. Also, when a user tries to login, password validation occurs.
Python, Socket programming
SERVER: socket with multithreading
CLIENT: socket
HASH: SHA256 (using pythons hashlib)
INPUT (client side)
1. Username
2. Password
OUPUT
1. Registeration successful: new user
2. Connection successful: password correct
3. Login failed: password incorrect
Hash table: Contains User and Password. It is implemented using python Dictionary data structure