Base64Encoder()
Syntax
Base64Encoder(InputBuffer, InputLength, OutputBuffer, OutputLength)Description
Encodes the specified buffer using the Base64 algorithm. This is widely used in e-mail programs but can be useful for any other programs which need an ASCII only (7 bits, only from 32 to 127 characters) encoding for raw binary files. The output buffer should be at last 33% bigger than the input buffer, with a minimum size of 64 bytes. It's recommended to get a slighty larger buffer, like 35% to avoid overflow. The data can be decoded later with Base64Decoder().
Supported OS
Windows, Linux, MacOS X