Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 279 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 279 Bytes

rbase64

This is just a pet project implementing a base64 encoder/decoder.

Build it with cargo build.

The program encodes/decodes stdin and prints the result to stdout.

Usage examples:

printf 'Man' |rbase64 # yields TWFu
printf 'TWFu' |rbase64 -D # yields Man