![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
#include "Cpl/Text/String.h"
Go to the source code of this file.
Namespaces | |
namespace | Cpl |
The 'Cpl' namespace is the root name space for the Colony. | |
namespace | Cpl::Text |
The Text namespace provides yet-another String class and additional string and/or text processing utilities. | |
namespace | Cpl::Text::Encoding |
The 'Encoding' namespace provides various encoding algorithms for converting binary data to (and from) ASCII text to facilitate transport of the binary data using text based protocols. | |
Functions | |
bool | Cpl::Text::Encoding::base64Encode (const void *binarySrc, size_t binarySrcLen, char *dstEncodedText, size_t dstSize, size_t &encodedOutputStringLen, bool insertMIMELineFeeds=false) |
This method encodes the specified binary data as Base64 (standard, with padding). | |
bool | Cpl::Text::Encoding::base64Decode (const char *encodedTextSrc, size_t encodedTextSrcLen, void *dstBinary, size_t dstSize, size_t &dstBinaryLen) |
This method decodes a Base64 string to its binary representation. | |