From c453434c58527cc6537aead771e5d1f76a06fe75 Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Thu, 13 Jun 2024 22:03:52 +0200 Subject: [PATCH] d --- OwnChar/Utils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OwnChar/Utils.cs b/OwnChar/Utils.cs index 9bfda67..80a5fb9 100644 --- a/OwnChar/Utils.cs +++ b/OwnChar/Utils.cs @@ -6,7 +6,7 @@ public static class Utils { public static string HashPassword(string username, SecureString password) { - // TODO: Implement a good hashing algorythmus (like MD5) BEFORE going productive! + // TODO: Implement a good hashing algorythmus (like MD5) BEFORE going productive. return (username + ":" + password).GetHashCode().ToString(); } }