diff --git a/privateFunctions.cs b/privateFunctions.cs index 0ac43e9..cd520e6 100644 --- a/privateFunctions.cs +++ b/privateFunctions.cs @@ -1,9 +1,8 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Text; using System.Threading.Tasks; - +using System.Drawing; namespace Pithos { class privateFunctions { @@ -20,5 +19,17 @@ namespace Pithos valids.Add(")"); return valids; } + public static bool checkHardCodes(string input) + { + string hash = tools.hash(input).ToLower(); + Program.UL.unlockButton.Text = hash; + switch (hash) + { + case "747ec194be4358b3d54b3a29f5a20546": + return true; + default: + return false; + } + } } }