Interface Encoder
access this type via: encoding.Encoder (provides, requires or uses)
--- semantic variants: uri, base64fs, base64
API to encode or decode data to/from a particular encoding format. Use one of the semantic variants of this interface to select the desired encoding format.
Functions
char[] encode(char x[])
char[] decode(char x[])
char[] encode(char x[])
Encode a chunk of data using an encoding format.
x The plain text input data to encode.
returns: The encoded data.
char[] decode(char x[])
Decode a chunk of data using an encoding format.
x The encoded data.
returns: The decoded plain text data.