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(); } }