aklomp-base64

Fast Base64 stream encoder/decoder in C99 with SIMD acceleration

brewmacoslinux
Try with needOr install directly
Source

About

Fast Base64 stream encoder/decoder in C99, with SIMD acceleration

Commands

base64

Examples

Encode a file to base64$ base64 < input.txt > output.b64
Decode a base64 file$ base64 -d < output.b64 > decoded.txt
Encode text directly from command line$ echo 'Hello World' | base64