2020-05-24 08:40:51 +00:00
|
|
|
using System.IO;
|
2020-05-21 09:05:32 +00:00
|
|
|
using System;
|
|
|
|
using treasurechest.STDIOWrapper;
|
2020-05-24 08:40:51 +00:00
|
|
|
using getpass;
|
2020-05-21 09:05:32 +00:00
|
|
|
|
2020-05-23 09:51:17 +00:00
|
|
|
namespace treasurechestCLI{
|
2020-05-21 09:05:32 +00:00
|
|
|
|
2020-05-23 09:51:17 +00:00
|
|
|
internal class EncryptMessageInterface{
|
|
|
|
public static void EncryptMessage(){
|
2020-05-21 09:05:32 +00:00
|
|
|
int choice = 0;
|
2020-05-23 09:51:17 +00:00
|
|
|
int counter = 1;
|
2020-05-24 08:40:51 +00:00
|
|
|
string message;
|
|
|
|
string passphrase;
|
|
|
|
|
2020-05-23 09:51:17 +00:00
|
|
|
translations.Strings strings = new translations.Strings();
|
2020-05-21 09:05:32 +00:00
|
|
|
|
2020-05-23 09:51:17 +00:00
|
|
|
string[] encryptMenuOptions =
|
|
|
|
{
|
|
|
|
strings.ENCRYPT_MENU_USE_PASSPHRASE,
|
|
|
|
strings.ENCRYPT_MENU_USE_PUBKEY,
|
|
|
|
strings.RETURN_TO_PREVIOUS_MENU
|
|
|
|
};
|
|
|
|
while(true){
|
2020-05-24 08:40:51 +00:00
|
|
|
counter = 1;
|
2020-05-23 09:51:17 +00:00
|
|
|
foreach(string option in encryptMenuOptions){
|
2020-05-21 09:05:32 +00:00
|
|
|
STDIO.O(counter.ToString() + ". " + option);
|
|
|
|
counter += 1;
|
|
|
|
}
|
|
|
|
try{
|
|
|
|
choice = Int32.Parse(System.Console.ReadLine());
|
|
|
|
}
|
|
|
|
catch (System.OverflowException){
|
|
|
|
// User being silly with input
|
|
|
|
STDIO.O(strings.MAIN_MENU_SELECT_INTEGER);
|
|
|
|
counter = 1;
|
|
|
|
}
|
|
|
|
catch(System.FormatException){
|
|
|
|
// Too lazy to check strings, force them to use int from menu which is faster anyway
|
|
|
|
STDIO.O(strings.MAIN_MENU_SELECT_INTEGER);
|
|
|
|
counter = 1;
|
|
|
|
}
|
|
|
|
catch(System.ArgumentNullException){
|
|
|
|
// Can happen when stream closes (e.g. ctrl-d)
|
|
|
|
// since menu is intended to be directly human interfaced, user probably wants to exit
|
2020-05-23 09:51:17 +00:00
|
|
|
choice = encryptMenuOptions.Length;
|
2020-05-21 09:05:32 +00:00
|
|
|
}
|
2020-05-23 09:51:17 +00:00
|
|
|
if (choice == 1){
|
2020-05-24 08:40:51 +00:00
|
|
|
try {
|
|
|
|
message = GetMessage.getTypedMessage();
|
|
|
|
}
|
|
|
|
catch(System.NullReferenceException){
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
passphrase = GetPass.getPass(strings.PASSPHRASE);
|
2020-05-21 09:05:32 +00:00
|
|
|
}
|
2020-05-23 09:51:17 +00:00
|
|
|
else if (choice == encryptMenuOptions.Length){
|
|
|
|
break;
|
2020-05-21 09:05:32 +00:00
|
|
|
}
|
2020-05-23 09:51:17 +00:00
|
|
|
|
2020-05-21 09:05:32 +00:00
|
|
|
}
|
2020-05-23 09:51:17 +00:00
|
|
|
|
2020-05-21 09:05:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|