Handbook
Glossary
Base64 conversions
The
base64
vocabulary implements conversions of sequences to printable characters in Base64. 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
( -- )