Tree
- Tree:
29b6acb5a67d811e66eb0eda91f38df77f88a633- Date:
- Message:
- help and README
| .gitignore | commits | blame |
| LICENSE | commits | blame |
| README.md | commits | blame |
| build.zig | commits | blame |
| build.zig.zon | commits | blame |
| src/ | |
README.md
# baze64
A base64 encoder & decoder in Zig
## Usage
```shell
# Print help
# Encoding
> baze64 "hello"
# Decoding with -D or -d
> baze64 -D "aGVsbG8="
# Print help
> baze64 -H
Usage: baze64 {-d/-D} {-h/-H} input
With no arguments, encodes input into a base64 string
Args:
-d -D: decodes a base64 string
-h -H: print this help
```