From f71ac09722f7c46f427044bfd32367bbc3e29f8c Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 5 Nov 2023 16:42:33 -0500 Subject: [PATCH] Fix incorrect past tense --- src/Tgstation.Server.Host/Security/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Security/README.md b/src/Tgstation.Server.Host/Security/README.md index c12dd0f587..404b27e162 100644 --- a/src/Tgstation.Server.Host/Security/README.md +++ b/src/Tgstation.Server.Host/Security/README.md @@ -39,7 +39,7 @@ 1. For non-OAuth logins, maintenance is performed on the user's DB entry at this point - For non-OS logins: 1. The provided password is hashed and checked against the database entry. If it does not match, HTTP 401 will be returned. - - This can potentially cause a change to the DB's stored `PasswordHash` if TGS has updated its dependencies and Microsoft has decided to deprecated the previous hashing method since the user last logged in. + - This can potentially cause a change to the DB's stored `PasswordHash` if TGS has updated its dependencies and Microsoft has decided to deprecate the previous hashing method since the user last logged in. - If this occurs, it invalidates all previous logins for the user. - For OS logins: 1. If the `PasswordHash` in the DB isn't null, it is set as such. This invalidates all previous logins for the user.