#include "beecrypt.h"
Go to the source code of this file.
Defines | |
#define | B64DECODE_WHITESPACE " \f\n\r\t\v" |
#define | B64ENCODE_CHARS_PER_LINE 72 |
#define | B64ENCODE_EOLSTR "\n" |
Functions | |
char * | b64encode (const void *data, size_t ns) |
char * | b64crc (const unsigned char *data, size_t ns) |
int | b64decode (const char *s, void **datap, size_t *lenp) |
char * | b64enc (const memchunk *) |
memchunk * | b64dec (const char *) |
Variables | |
const char * | b64decode_whitespace |
int | b64encode_chars_per_line |
const char * | b64encode_eolstr |
Definition in file base64.h.
|
|
|
|
|
|
|
Encode crc of binary input data into 5 bytes of base64 output.
|
|
|
|
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.
|
|
\ Decode white space character set (default). |
|
\ Encode 72 characters per line (default). |
|
\ Encode end-of-line string (default). |