A simple Rust CLI tool to decode Base64 and Base64URL-encoded strings. Supports input from command-line arguments, files, or stdin.
- Decode standard Base64 or Base64URL
- Accept input from:
- Command-line argument
- File (
-f) - Stdin (default fallback)
- Optional flag to ignore padding (
-p) - Output decoded result to stdout
- Graceful error handling
acid64 "SGVsbG8gd29ybGQ="acid64 -u "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXotLS0_"acid64 -f input.txtecho "SGVsbG8gd29ybGQ=" | acid64acid64 -p "SGVsbG8td29ybGQ"