https://github.com/coriolinus/xorcism
xor arbitrary data from the command line
https://github.com/coriolinus/xorcism
Last synced: over 1 year ago
JSON representation
xor arbitrary data from the command line
- Host: GitHub
- URL: https://github.com/coriolinus/xorcism
- Owner: coriolinus
- License: mit
- Created: 2020-11-05T15:03:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-05T15:12:28.000Z (over 5 years ago)
- Last Synced: 2025-02-01T04:16:21.427Z (over 1 year ago)
- Language: Rust
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `xorcism`: kind of like encryption
It's not encryption, of course; it's just barely more than `rot13`. Still, it symmetrically obfuscates a message with a key, which is something.
This implementation is written in terms of the `Write` and `Read` traits.
## Features
This package has a single feature, `bin`, which is enabled by default.
When enabled, `bin` produces a binary `xorcism` which enables command-line usage of this package.
To disable production of the binary and just use the library, include this as
```toml
xorcism = { version = "*", default-features = false }
```