Specifies how many characters to encode per a single execute() call. This value has been tuned to work under all optimization settings and with stacktraces included. *
public class Base64Encoder
public class Base64Decoder
public function ByteBuffer.encodeBase64() returns ChunkedString
Encodes the bytes in this buffer to a string according to the Base64 format.
public function ChunkedString.decodeBase64() returns ByteBuffer
Decodes the bytes encoded into this string according to the Base64 format.
public function string.decodeBase64() returns ByteBuffer
Decodes the bytes encoded into this string according to the Base64 format.
public constant ENCODES_PER_ROUND = 1000
🔧 Configurable. Override it in your map’s config package.
public constant DECODES_PER_ROUND = 25
🔧 Configurable. Override it in your map’s config package.
Specifies how many chunks to decode per a single execute() call. This value has been tuned to work under all optimization settings and with stacktraces included. *