gloox::Base64 Namespace Reference
An implementation of the Base64 data encoding (RFC 3548).
More...
Functions |
const std::string | encode64 (const std::string &input) |
const std::string | decode64 (const std::string &input) |
Detailed Description
An implementation of the Base64 data encoding (RFC 3548).
- Author:
- Jakob Schroeter <js@camaya.net>
- Since:
- 0.8
Function Documentation
GLOOX_API const std::string decode64 |
( |
const std::string & |
input |
) |
|
Base64-decodes the input according to RFC 3548.
- Parameters:
-
- Returns:
- The decoded data.
GLOOX_API const std::string encode64 |
( |
const std::string & |
input |
) |
|
Base64-encodes the input according to RFC 3548.
- Parameters:
-
| input | The data to encode. |
- Returns:
- The encoded string.