/ This class is responsible for everything relating to encoding. You will find routines for base64 encoding here. You can use this Encoder statically. Encoder.methodName(); /
Constructs this Encoder
function __construct(number unix_timestamp) : void
Base64 encodes the given string and returns the encoded result of the given value
function base64_encode(string value) : string
Base64 decodes the given string and returns the decoded result of the given encoded value
function base64_decode(string value) : string