>base64-lines ( seq -- base64 )
Base 64 conversions

Prev:>base64 ( seq -- base64 )
Next:base64> ( base64 -- seq )


Vocabulary
base64

Inputs
seqa sequence


Outputs
base64a string of base64 characters


Word description
Converts a sequence to its base64 representation by taking six bits at a time as an index into a lookup table containing alphanumerics, '+', and '/'. The result is padded with '=' if the input was not a multiple of six bits. A crlf is inserted for every 76 characters of output.

See also
>base64, base64>

Definition