Suppose I have a simple Java server application, which implements a few web (REST) services. The application is deployed as war in Tomcat. Now I would like to add user authentication as follows:
Add a plain text file
userswith user names and passwords on the server side. User is required to send both user name and password with each request and the server tests them against the file.In order to prevent sending passwords as clear text I am considering one-way encryption just like one used in
/etc/passwd. So users will be required to encrypt their passwords before sending them in the requests.
Does this approach make any sense? Is there any "ready-to-use" implementation of this approach in Java?