From 40fd7e427442763e9cb022d81d6cf7a2104bdc2f Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 29 Dec 2014 23:43:16 +0000 Subject: [PATCH] added file with plain text overrides (could be used to gain access if seen, so in another file) --- privateFunctions.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 privateFunctions.cs diff --git a/privateFunctions.cs b/privateFunctions.cs new file mode 100644 index 0000000..0ac43e9 --- /dev/null +++ b/privateFunctions.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Pithos +{ + class privateFunctions { + public static List validUserNames() { + List valids = new List(); + valids.Add("Jake"); + valids.Add("13HowardJS03"); + return valids; + } + + public static List validMachineNames() + { + List valids = new List(); + valids.Add(")"); + return valids; + } + } +}