Base64 implemented in Zig
Find a file
2026-03-18 12:35:54 -07:00
src help and README 2024-11-07 09:42:51 -08:00
.gitignore init 2024-11-06 10:47:07 -08:00
build.zig init 2024-11-06 10:47:07 -08:00
build.zig.zon init 2024-11-06 10:47:07 -08:00
LICENSE readme & license 2024-11-06 10:49:54 -08:00
README Convert README from markdown to plaintext 2026-03-18 12:35:54 -07:00

baze64

A base64 encoder & decoder in Zig

-- Usage --

# 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