treasurechest/cli/ui/interfaces/encrypt.cs

81 lines
2.6 KiB
C#
Raw Normal View History

2020-05-24 08:40:51 +00:00
using System.IO;
using System;
2020-05-26 09:16:49 +00:00
using System.Text;
using Sodium;
2020-05-26 09:16:49 +00:00
using niceware;
using chestcrypto.simplepack;
using chestcrypto.symmetric;
using treasurechest.STDIOWrapper;
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-26 09:16:49 +00:00
byte[] 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 {
2020-05-26 09:16:49 +00:00
message = UTF8Encoding.UTF8.GetBytes(GetMessage.getTypedMessage());
2020-05-24 08:40:51 +00:00
}
catch(System.NullReferenceException){
continue;
}
2020-05-26 09:16:49 +00:00
key = SecretBox.GenerateKey();
2020-05-26 09:16:49 +00:00
encrypted = SimplePack.pack(Symmetric.encrypt(message, key));
STDIO.O(encrypted);
foreach (string word in Niceware.ToPassphrase(key)){
Console.Write(word + " ");
}
STDIO.O("");
}
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
}
}
}