Base64 Class Reference
#include <Base64.hh>
| Static Public Member Functions | |
| static std::string | Decode (const std::string &_encodedString) | 
| Decode a base64 string. | |
| static void | Encode (const char *_bytesToEncode, unsigned int _len, std::string &_result) | 
| Encode a binary string into base 64, padded with '='. | |
Member Function Documentation
◆ Decode()
| 
 | static | 
Decode a base64 string.
- Parameters
- 
  [in] _encodedString A base 64 encoded string. 
- Returns
- The decoded string.
◆ Encode()
| 
 | static | 
Encode a binary string into base 64, padded with '='.
- Parameters
- 
  [in] _bytesToEncode String of bytes to encode. [in] _len Length of _bytesToEncode. [out] _result Based64 string is appended to this string. 
The documentation for this class was generated from the following file: