diff --git a/GhettoCryptCLI/CommandlineInterface.cpp b/GhettoCryptCLI/CommandlineInterface.cpp index d09738c..789fa6c 100644 --- a/GhettoCryptCLI/CommandlineInterface.cpp +++ b/GhettoCryptCLI/CommandlineInterface.cpp @@ -14,7 +14,7 @@ void CommandlineInterface::Init(int argc, const char* const* argv) << "Copyright (c) 2022 Leon Etienne" << std::endl << "Ghettocrypt v" << GHETTOCRYPT_VERSION << std::endl << "Ghettocrypt CLI v" << GHETTOCRYPTCLI_VERSION << std::endl - << "THIS IS EXPERIMENTAL SOFTWARE AND MUST BE CONSIDERED INSECURE. DO NOT USE THIS TO ENCRYPT SENSITIVE DATA! READ THE README FILE ACCESSIBLE AT \"https://github.com/Leonetienne/GhettoCrypt/blob/master/readme.md\""; + << "THIS IS EXPERIMENTAL SOFTWARE AND MUST BE CONSIDERED INSECURE. DO NOT USE THIS TO ENCRYPT SENSITIVE DATA! READ THE README FILES ACCESSIBLE AT \"https://github.com/Leonetienne/GhettoCrypt/blob/master/readme.md\" AND \"https://github.com/Leonetienne/GhettoCrypt/blob/master/GhettoCryptCLI/readme.md\""; nupp.SetBriefDescription(ss.str()); ss.str(""); nupp.SetCatchHelp("true"); diff --git a/GhettoCryptCLI/Version.h b/GhettoCryptCLI/Version.h index e2318b4..ff11f22 100644 --- a/GhettoCryptCLI/Version.h +++ b/GhettoCryptCLI/Version.h @@ -1,2 +1,2 @@ #pragma once -#define GHETTOCRYPTCLI_VERSION 0.1 +#define GHETTOCRYPTCLI_VERSION 0.11 diff --git a/GhettoCryptCLI/gecrypt b/GhettoCryptCLI/gecrypt index 8739d6b..94c3422 100644 Binary files a/GhettoCryptCLI/gecrypt and b/GhettoCryptCLI/gecrypt differ diff --git a/GhettoCryptCLI/main.cpp b/GhettoCryptCLI/main.cpp index 1af854c..8ab378f 100644 --- a/GhettoCryptCLI/main.cpp +++ b/GhettoCryptCLI/main.cpp @@ -123,7 +123,7 @@ const Flexblock GetInputText(bool encryptionMode) return ReadFileToBits(CommandlineInterface::Get()["--infile"].GetString()); // Unreachable - throw std::runtime_error("This code should not have been reached. Most likely, the cli argument parser failed making sure at least one key method was supplied."); + throw std::runtime_error("This code should not have been reached. Most likely, the cli argument parser failed making sure at least one input method was supplied."); } const std::string GetOutfileName(const bool isEncryptionMode)