Question: In python An information system uses a server with simple authentication mechanism through a user name and a password per user. For this purpose, the

An information system uses a server with simple authentication mechanism through a user name and a password per user. For this purpose, the server uses a file named Authentication File.dat that stores for each user the user name and the corresponding password A: Write a python implementation of a client program that can prompt the user to input the user name and password, then sends the username and the password properly to the server. Based on the response of the server, the client program should display Welcome, if the username and password are valid Invalid login otherwise B: Write a python implementation of the server program that receives a user name and a password, and checks if the password is the same as the one corresponding to the username in the Authentication File.dat. The Server should respond with Welcome for valid login and "Invalid login otherwise. The server should be able to handle multiple clients concurrently
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
