Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trou/fastxor
Fast tool to xor files
https://github.com/trou/fastxor
cli-app linux xor
Last synced: 6 days ago
JSON representation
Fast tool to xor files
- Host: GitHub
- URL: https://github.com/trou/fastxor
- Owner: trou
- License: mit
- Created: 2019-07-31T12:20:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-14T18:31:30.000Z (over 1 year ago)
- Last Synced: 2024-11-20T09:27:21.940Z (2 months ago)
- Topics: cli-app, linux, xor
- Language: C
- Homepage:
- Size: 21.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Fast tool to xor files.
```console
$ ./fastxor -h
Usage: fastxor -x hexkey|-f file_key [input_file ouput_file]
```
When no input and output file is specified, uses stdin and stdout.### Xor with hex string
```console
$ ./fastxor -x FF input output
$ ./fastxor -x 010203040506 input output
$ cat input | ./fastxor -x 11 > output
```### Xor with a file
```console
$ hd keyfile
00000000 01 02 03 04 05 06 |......|
$ ./fastxor -f keyfile intput output
$ cat input | ./fastxor -f keyfile > output
```