- public uchar[] decode (string text)
Decode a sequence of Base-64 encoded text into binary data.
- public size_t decode_step (char[] _in, uchar* _out, ref int state, ref uint save)
Incrementally decode a sequence of binary data from its Base-64 stringified
representation.
- public string encode (uchar[] data)
Encode a sequence of binary data into its Base-64 stringified
representation.
- public size_t encode_close (bool break_lines, char* _out, ref int state, ref int save)
Flush the status from a sequence of calls to
encode_step.
- public size_t encode_step (uchar[] _in, bool break_lines, char* _out, ref int state, ref int save)
Incrementally encode a sequence of binary data into its Base-64 stringified
representation.