add missing h

This commit is contained in:
2024-06-13 22:01:01 +02:00
parent a17a21b12c
commit 16038c9e6a

View File

@@ -6,7 +6,7 @@ public static class Utils
{ {
public static string HashPassword(string username, SecureString password) public static string HashPassword(string username, SecureString password)
{ {
// TODO: Implement a good hasing algorythmus (like MD5) BEFORE going productive! // TODO: Implement a good hashing algorythmus (like MD5) BEFORE going productive!
return (username + ":" + password).GetHashCode().ToString(); return (username + ":" + password).GetHashCode().ToString();
} }
} }