a cli tool for text encode and decoding
Run the following in PowerShell (no compiler required):
iwr -useb https://raw.githubusercontent.com/dummy3ye/enc/master/scripts/get.ps1 | iexIf you wish to compile from source:
make bin- Manually copy
bin/enc.exeto your installation directory.
# String to hex
enc -e "my text" -key "password"
# File to hex
enc -e input.txt -key "mysecret" -o output.hex# Hex to string
enc -d "4be41ef2..." -key "password"
# File to plain text
enc -d output.hex -key "mysecret" -o restored.txt- Manual: Pass
-key "yourkey" - File: Pass
-f "keyfile.txt" - Automatic: If no key is provided,
enclooks forkey.txtin the current directory.
make uninstall