Added c++ version to code base.

This commit is contained in:
2026-05-22 19:05:24 +02:00
parent b60f84e519
commit 197862fc36
6 changed files with 1228 additions and 1 deletions
+26
View File
@@ -32,6 +32,25 @@ Die EXE liegt danach hier:
BinaryConverter\bin\Release\BinaryConverter.exe
```
Native Linux-Version fuer Arch Linux:
```bash
cd native
make
```
Die native Binary liegt danach hier:
```text
native/build/binaryconverter
```
Voraussetzungen unter Arch Linux:
```bash
sudo pacman -S --needed base-devel openssl pkgconf
```
## Nutzung
Encode:
@@ -46,6 +65,13 @@ Decode:
BinaryConverter.exe -Decode Out.txt PowerShell.exe
```
Unter Linux wird dieselbe Syntax mit der nativen Binary verwendet:
```bash
./native/build/binaryconverter -Encode input.bin -Output Out.txt
./native/build/binaryconverter -Decode Out.txt output.bin
```
Alternative Decode-Syntax:
```powershell