Base 64 conversions


The base64 vocabulary implements conversions of sequences to printable characters in base 64. These plain-text representations of binary data may be passed around and converted back to binary data later.

Converting to and from base64 as strings:
>base64 ( seq -- base64 )

>base64-lines ( seq -- base64 )

base64> ( base64 -- seq )


Using base64 from streams:
encode-base64 ( -- )

encode-base64-lines ( -- )

decode-base64 ( -- )