This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
unsigned char * | base64encode (const unsigned char *str, unsigned length, unsigned *ret_length) |
Encodes data with MIME base64. | |
unsigned char * | base64decode (const unsigned char *str, unsigned length, unsigned *ret_length) |
Decodes data encoded with MIME base64. |
|
Decodes data encoded with MIME base64. base64_decode() decodes encoded_data and returns the original data. The returned data may be binary.
Definition at line 116 of file base64.cpp. References base64_pad, and base64_table. |
|
Encodes data with MIME base64. This encoding is designed to make binary data survive transport through transport layers that are not 8-bit clean, such as mail bodies. Base64-encoded data takes about 33% more space than the original data.
Definition at line 51 of file base64.cpp. References base64_pad, and base64_table. Referenced by http_connect(), and http_get(). |