An open API service indexing awesome lists of open source software.

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.

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.