Closed Nathcat closed 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.
The DB can be updated to contain hashed passwords with the following: UPDATE users SET Password = SHA2(Password, 256);
UPDATE users SET Password = SHA2(Password, 256);
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.