can now encrypt strings in cli menu

This commit is contained in:
Kevin Froman 2020-05-26 04:16:49 -05:00
parent c6325a9925
commit 27db4aec17
7 changed files with 18 additions and 27 deletions

View File

@ -7,6 +7,7 @@
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="NicewareSecure" Version="0.0.1" />
</ItemGroup>
<ItemGroup>

View File

@ -1,8 +1,13 @@
using System.IO;
using System;
using System.Text;
using Sodium;
using niceware;
using chestcrypto.simplepack;
using chestcrypto.symmetric;
using treasurechest.STDIOWrapper;
using getpass;
namespace treasurechestCLI{
@ -11,7 +16,7 @@ namespace treasurechestCLI{
int choice = 0;
int counter = 1;
byte[] key = new byte[32];
string message;
byte[] message;
string encrypted;
translations.Strings strings = new translations.Strings();
@ -48,13 +53,19 @@ namespace treasurechestCLI{
}
if (choice == 1){
try {
message = GetMessage.getTypedMessage();
message = UTF8Encoding.UTF8.GetBytes(GetMessage.getTypedMessage());
}
catch(System.NullReferenceException){
continue;
}
key = SecretBox.GenerateKey();
//encrypted =
encrypted = SimplePack.pack(Symmetric.encrypt(message, key));
STDIO.O(encrypted);
foreach (string word in Niceware.ToPassphrase(key)){
Console.Write(word + " ");
}
STDIO.O("");
}
else if (choice == encryptMenuOptions.Length){

View File

@ -43,7 +43,6 @@ namespace DoubleKeyPrivateTests
success = true;
}
catch (chestcrypto.exceptions.InvalidDoubleKeyException){
Console.WriteLine("Throws properly for too small array size");
}
if (success){
Assert.Fail();
@ -54,7 +53,6 @@ namespace DoubleKeyPrivateTests
success = true;
}
catch (chestcrypto.exceptions.InvalidDoubleKeyException){
Console.WriteLine("Throws properly for too large array size");
}
if (success){
Assert.Fail();

View File

@ -26,7 +26,6 @@ namespace DoubleKeyPublicTests
success = true;
}
catch (chestcrypto.exceptions.InvalidDoubleKeyException){
Console.WriteLine("Throws properly for too small array size");
}
if (success){
Assert.Fail();
@ -37,7 +36,6 @@ namespace DoubleKeyPublicTests
success = true;
}
catch (chestcrypto.exceptions.InvalidDoubleKeyException){
Console.WriteLine("Throws properly for too large array size");
}
if (success){
Assert.Fail();

View File

@ -1,16 +0,0 @@
namespace chestcrypto{
namespace simplepack{
public class Packed{
//private string
//public override string ToString(){
//}
public Packed(){
}
}
}
}

View File

@ -6,8 +6,8 @@ namespace chestcrypto{
public class SimplePack{
private const string header = "CHEST-MESSAGE";
private const string footer = "END-CHEST-MESSAGE.";
private const string header = "CHEST-MESSAGE ";
private const string footer = " END-CHEST-MESSAGE.";
// Test simplepackTest.TestPackUnpackBytes
public static string pack(byte[] data){

View File

@ -7,7 +7,6 @@
<ItemGroup>
<PackageReference Include="Base58Check" Version="0.2.0" />
<PackageReference Include="MessagePack" Version="2.1.115" />
<PackageReference Include="niceware" Version="0.1.0.1" />
<PackageReference Include="Sodium.Core" Version="1.2.3" />
</ItemGroup>