ACEXML
6.1.0
|
Encode/Decode a stream of ACEXML_Chars according to Base64 encoding. More...
#include <XML_Codecs.h>
Static Public Member Functions | |
static ACEXML_Char * | encode (const ACEXML_Char *input, size_t *output_len) |
static ACEXML_Char * | decode (const ACEXML_Char *input, size_t *output_len) |
Encode/Decode a stream of ACEXML_Chars according to Base64 encoding.
This class provides methods to encode or decode a stream of ACEXML_Chars to/from Base64 encoding. It doesn't convert the input stream to a canonical form before encoding.
ACEXML_Char * ACEXML_Base64::decode | ( | const ACEXML_Char * | input, |
size_t * | output_len | ||
) | [static] |
Decodes a stream of Base64 to octets data
input | Encoded Base64 data in ACEXML_Char stream. |
output_len | Length of the binary ACEXML_Char stream. |
ACEXML_Char * ACEXML_Base64::encode | ( | const ACEXML_Char * | input, |
size_t * | output_len | ||
) | [static] |
Encodes a stream of octets to Base64 data
input | Binary data in ACEXML_Char stream. |
output_len | Length of the encoded Base64 ACEXML_Char stream. |