Go to the source code of this file.
Functions | |
int | decode_base64 (unsigned char *dest, const char *src) |
Decode the base64 encoded string 'src' into the memory pointed to by 'dest'. | |
int | encode_base64 (char **dest, int size, unsigned char *src) |
Base64 encode size data in 'src', into the allocated string pointed to by 'dest'. |
|
Decode the base64 encoded string 'src' into the memory pointed to by 'dest'. The dest buffer is not NUL terminated.
Definition at line 153 of file base64.c. References xmalloc(). |
|
Base64 encode size data in 'src', into the allocated string pointed to by 'dest'. The caller must free the dest string.
Definition at line 65 of file base64.c. References xmalloc(). Referenced by get_basic_authentication_header(). |