Nathcat / PeopleCat-WebAppPrototype

GNU General Public License v3.0
2 stars 0 forks source link

Implemented the ability to create new users. #6

Closed Nathcat closed 5 months ago

Nathcat commented 5 months ago

The application now has the ability to create new users by itself. Furthermore, passwords are now hashed using SHA-256. This means that passwords currently in the database will need to be updated.

Nathcat commented 5 months ago

The DB can be updated to contain hashed passwords with the following: UPDATE users SET Password = SHA2(Password, 256);