| Crates.io | b64-cli |
| lib.rs | b64-cli |
| version | 0.1.2 |
| created_at | 2026-01-02 13:42:55.357603+00 |
| updated_at | 2026-01-05 15:40:52.580867+00 |
| description | A simple and fast command-line tool for encoding and decoding base64 strings |
| homepage | https://github.com/corsantic/b64-cli |
| repository | https://github.com/corsantic/b64-cli |
| max_upload_size | |
| id | 2018538 |
| size | 9,479 |
A simple and fast command-line tool for encoding and decoding base64 strings.
Install from crates.io:
cargo install b64-cli
Or install from source:
git clone https://github.com/corsantic/b64-cli
cd b64-cli
cargo install --path .
The basic syntax is:
b64 <command> <input>
encode or e - Encode a string to base64decode or d - Decode a base64 stringEncoding:
b64 encode hello
# Output: aGVsbG8=
b64 e hello
# Output: aGVsbG8=
Decoding:
b64 decode aGVsbG8=
# Output: hello
b64 d aGVsbG8=
# Output: hello
cargo build --release
cargo test
MIT