Go to the source code of this file.
Functions | |
| void | base64_encode_block (unsigned char out[4], const unsigned char in[3], int len) |
| Encode a minimal memory block. | |
| int | base64_decode_block (unsigned char out[3], const unsigned char in[4]) |
| Decode a minimal memory block. | |
| size_t | base64_encoded_size (size_t len) |
| Compute size of needed storage for encoding. | |
| size_t | base64_decoded_size (size_t len) |
| Compute size of needed storage for decoding. | |
| void | base64_encode_binary (char *out, const unsigned char *in, size_t len) |
| Encode an arbitrary size memory area. | |
| int | base64_decode_binary (unsigned char *out, const char *in) |
| Decode an arbitrary size memory area. | |
| char * | base64_encode (const char *in, size_t size) |
| Encode a string. | |
| char * | base64_decode (const char *in) |
| Decode a string. | |
Definition in file base64.h.
1.5.1-p1. Thank you,