use this class to read and write data in base64. More...
#include <OSBase64.h>
Public Member Functions | |
Base64 () | |
Base64 class constructor. More... | |
~Base64 () | |
Base64 class destructor. More... | |
Static Public Member Functions | |
static std::string | encodeb64 (char *bytes, int size) |
encode the data in base 64 More... | |
static std::string | decodeb64 (char *b64bytes) |
decode the data in base 64 More... | |
use this class to read and write data in base64.
Definition at line 33 of file OSBase64.h.
Base64::Base64 | ( | ) |
Base64 class constructor.
Base64::~Base64 | ( | ) |
Base64 class destructor.
|
static |
encode the data in base 64
bytes | is the input to be encoded. |
size | is the size of the pointer in bytes |
Definition at line 33 of file OSBase64.cpp.
|
static |
decode the data in base 64
b64bytes | is the input to be decoded |
Definition at line 87 of file OSBase64.cpp.