lafkob / swe681_game

Our game for SWE 681.
0 stars 1 forks source link

Connect spring-security to a database table #11

Closed lafkob closed 8 years ago

lafkob commented 8 years ago

Current authentication is set up to a hardcoded username and password. This needs to be database driven.

Important inclusions:

StormGull commented 8 years ago

The login page is now wired to use our data source for the username and password. It automatically hashes the password and checks it against the database value. Since we are using BCrypt, which has the salt built into the hash itself, we don't need to store the salt.

Still left to: Registration page to add a user and his/her hashed password to the database.

lafkob commented 8 years ago

Closing, the remaining todo is captured in #12