#include "system.h"
#include "base64.h"
#include "debug.h"
Go to the source code of this file.
Functions | |
int | B64decode (const char * s, void ** datap, size_t *lenp) |
Decode chunks of 4 bytes of base64 input into 3 bytes of binary output. More... | |
char* | B64encode (const void * str, size_t ns) |
Encode chunks of 3 bytes of binary input into 4 bytes of base64 output. More... |
Definition in file base64.c.
|
Decode chunks of 4 bytes of base64 input into 3 bytes of binary output.
|
|
Encode chunks of 3 bytes of binary input into 4 bytes of base64 output.
|