From 16038c9e6abce755a6499cbb33cd96cbdb60da23 Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Thu, 13 Jun 2024 22:01:01 +0200 Subject: [PATCH] add missing h --- OwnChar/Utils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OwnChar/Utils.cs b/OwnChar/Utils.cs index 809dc6c..9bfda67 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 hasing algorythmus (like MD5) BEFORE going productive! + // TODO: Implement a good hashing algorythmus (like MD5) BEFORE going productive! return (username + ":" + password).GetHashCode().ToString(); } }