From d4df2948dded770cf1afc14ff3f9b97602b8e3a8 Mon Sep 17 00:00:00 2001 From: David Cernat Date: Mon, 23 Sep 2019 20:30:33 +0300 Subject: [PATCH] [Client] Use clearer wording for comment in GUIController --- apps/openmw/mwmp/GUIController.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw/mwmp/GUIController.cpp b/apps/openmw/mwmp/GUIController.cpp index b8bc63cde..99853aa1a 100644 --- a/apps/openmw/mwmp/GUIController.cpp +++ b/apps/openmw/mwmp/GUIController.cpp @@ -175,8 +175,8 @@ void mwmp::GUIController::onInputBoxDone(MWGui::WindowBase *parWindow) LocalPlayer *localPlayer = Main::get().getLocalPlayer(); std::string textInput = mInputBox->getTextInput(); - // Send SHA256 hash of input for password dialogs after it's been hashed and rehashed, - // for some slight extra security that doesn't require the client to keep storing a salt + // Send input for password dialogs after it's been hashed and rehashed, for some slight + // extra security that doesn't require the client to keep storing a salt if (localPlayer->guiMessageBox.type == BasePlayer::GUIMessageBox::PasswordDialog) { textInput = picosha2::hash256_hex_string(textInput);