diff --git a/GhettoCryptCLI/Version.h b/GhettoCryptCLI/Version.h index 2380443..1420854 100644 --- a/GhettoCryptCLI/Version.h +++ b/GhettoCryptCLI/Version.h @@ -1,2 +1,2 @@ #pragma once -#define GHETTOCRYPTCLI_VERSION 0.121 +#define GHETTOCRYPTCLI_VERSION 0.122 diff --git a/GhettoCryptCLI/gecrypt b/GhettoCryptCLI/gecrypt index a3855f7..ce387d0 100644 Binary files a/GhettoCryptCLI/gecrypt and b/GhettoCryptCLI/gecrypt differ diff --git a/GhettoCryptCLI/main.cpp b/GhettoCryptCLI/main.cpp index 8ab378f..532b884 100644 --- a/GhettoCryptCLI/main.cpp +++ b/GhettoCryptCLI/main.cpp @@ -173,7 +173,7 @@ int main(int argc, char** argv) // Dump to stdout? if (CommandlineInterface::Get().HasParam("--ostdout")) { - const std::string outstr = BitsToString(output); + const std::string outstr = BitsToBytes(output); // We have to print char-by-char to prevent a nullbyte terminating output. for (std::size_t i = 0; i < outstr.size(); i++)