From 9b58adb6a235e8efee4150150d27cf655bea0d32 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Mon, 22 Aug 2016 18:52:02 -0400 Subject: [PATCH] Added some TODO --- Manifest.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Manifest.cs b/Manifest.cs index a9730e2..a95d009 100644 --- a/Manifest.cs +++ b/Manifest.cs @@ -156,6 +156,8 @@ public class Manifest public class IncorrectPassKeyException : Exception { } public class ManifestNotEncryptedException : Exception { } + // TODO: move PromptForPassKey to Program.cs + // TODO: make PromptForPassKey more secure public string PromptForPassKey() { if (!this.Encrypted) @@ -180,6 +182,7 @@ public class Manifest return passKey; } + // TODO: move PromptSetupPassKey to Program.cs public string PromptSetupPassKey(string initialPrompt = "Enter passkey, or hit cancel to remain unencrypted.") { Console.Write("Would you like to use encryption? [Y/n] ");