https://github.com/arikato111/byfi-rust
command line program to convert binary file to bytes text file or convert byte text file to binary file. and encript decrypt file.
https://github.com/arikato111/byfi-rust
Last synced: 3 months ago
JSON representation
command line program to convert binary file to bytes text file or convert byte text file to binary file. and encript decrypt file.
- Host: GitHub
- URL: https://github.com/arikato111/byfi-rust
- Owner: Arikato111
- License: apache-2.0
- Created: 2024-03-21T13:52:45.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-03T14:20:04.000Z (about 1 year ago)
- Last Synced: 2025-01-17T20:22:21.140Z (5 months ago)
- Language: Rust
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## BYFI
command line program to convert binary file to bytes text file or convert byte text file to binary file. and encript decrypt file.
### Build
- `cargo build --release`
- copy and rename `./target/release/byfi` to byfi to your path### Usage
```
byfi - bytes to file or file to bytesUsage:
byfi [COMMAND] [OPTION] FILE_NAMECommand:
byte convert file to bytes text.
file convert bytes text to file.
en encript file
de decript fileOption:
-b [base] ex. `byfi -b 16 file.png`
[base] = 2 | 8 | 16.
convert to 2 8 or 16 base.
--key [string] to encrypt of decript your fileExample:
byfi byte file.png convert `file.png` to bytes text.
output is `file.png.txt`.
byfi file file.png.txt convert back to file.
```