treasurechest/cli/ui/interfaces/encrypt.cs

70 lines
2.2 KiB
C#
Raw Normal View History

2020-05-24 08:40:51 +00:00
using System.IO;
using System;
using Sodium;
using treasurechest.STDIOWrapper;
2020-05-24 08:40:51 +00:00
using getpass;
2020-05-23 09:51:17 +00:00
namespace treasurechestCLI{
2020-05-23 09:51:17 +00:00
internal class EncryptMessageInterface{
public static void EncryptMessage(){
int choice = 0;
2020-05-23 09:51:17 +00:00
int counter = 1;
byte[] key = new byte[32];
2020-05-24 08:40:51 +00:00
string message;
2020-05-25 05:05:49 +00:00
string encrypted;
2020-05-24 08:40:51 +00:00
2020-05-23 09:51:17 +00:00
translations.Strings strings = new translations.Strings();
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){
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-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;
}
key = SecretBox.GenerateKey();
//encrypted =
}
2020-05-23 09:51:17 +00:00
else if (choice == encryptMenuOptions.Length){
break;
}
2020-05-23 09:51:17 +00:00
}
2020-05-23 09:51:17 +00:00
}
}
}