Tree


.gitignorecommits | blame
LICENSEcommits | blame
README.mdcommits | blame
build.zigcommits | blame
build.zig.zoncommits | blame
src/

README.md

# baze64

A base64 encoder & decoder in Zig

## Usage

```shell
# Encoding
echo -n "hello" | baze64

# Decoding
echo -n "aGVsbG8=" | baze64
```