base64> ( base64 -- seq )
Base 64 conversions

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


Vocabulary
base64

Inputs
base64a string of base64 characters


Outputs
seqa sequence


Word description
Converts a string in base64 encoding back into its binary representation.

Examples
USING: prettyprint base64 strings ; "VGhlIG1vbm9yYWlsIGlzIGEgZnJlZSBzZXJ2aWNlLg==" base64> >string .
"The monorail is a free service."


Notes
This word will throw if the input string contains characters other than those allowed in base64 encodings.

See also
>base64, >base64-lines

Definition