Final answer:
To create a secure system with user authentication using a database, integrate H2 database drivers, create a Users table, hash passwords with salts, and verify user credentials during login. Configure your web application to safely store and authenticate user data.
Step-by-step explanation:
To create a secure system that uses a database to store users with salted passwords and authenticates using these details, start by setting up an H2 database. Implement user authentication by modifying your existing project code as follows:
- Integrate the H2 database drivers with your project.
- Create the Users table in the H2 database to store user details such as username, salted password, and the salt itself.
- Use a cryptographic library to generate salts and hash passwords before storing them in the database.
- When a user attempts to log in, retrieve the corresponding salt and hashed password from the database and verify the credentials.
Ensure that your project is configured correctly by verifying that the users are stored in the database with their hashed passwords and salts. Once implemented, your web application should allow users to securely log in with their credentials backed by your new H2 database implementation.
When you have successfully completed the adaptation, take screenshots of your H2 console showing the Users table and of your secure page after logging in. Submit these screenshots as proof of your work.