https://github.com/ofasgard/xorhelper
A simple Rust tool to obfuscate or deobfuscate data with a repeating XOR key.
https://github.com/ofasgard/xorhelper
commandline-tool xor-cipher
Last synced: about 2 months ago
JSON representation
A simple Rust tool to obfuscate or deobfuscate data with a repeating XOR key.
- Host: GitHub
- URL: https://github.com/ofasgard/xorhelper
- Owner: ofasgard
- License: gpl-3.0
- Created: 2023-07-25T11:13:42.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-01T09:31:48.000Z (almost 3 years ago)
- Last Synced: 2023-08-01T10:43:26.775Z (almost 3 years ago)
- Topics: commandline-tool, xor-cipher
- Language: Rust
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xorhelper
A simple Rust tool to obfuscate or deobfuscate data with a repeating XOR key.
Usage:
```sh
$ echo 'hello, world' | xorhelper 'my super secret password' > obfuscated.txt
```
The data to be translated is read from STDIN. The translated data is returned to STDOUT.