![]() |
libxputty 0.1
|
Go to the source code of this file.
Functions | |
| void | decodeblock (unsigned char in[], unsigned char **clrstr) |
| void | b64_decode (char *b64src, char *clrdst) |
| b64_decode - decode to a b64 based char | |
| void | encodeblock (unsigned char in[], char b64str[], int len) |
| void | b64_encode (char *clrstr, char *b64dst) |
| b64_encode - encode a b64 based char | |
Variables | |
| char | b64 [] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" |
| void b64_decode | ( | char * | b64src, |
| char * | clrdst | ||
| ) |
b64_decode - decode to a b64 based char
| *b64src | - the char to decode |
| *clrdst | - the decoded char |
Definition at line 26 of file b64_encode.c.
References b64, and decodeblock().
Referenced by widget_get_scaled_svg(), and widget_get_svg().
| void b64_encode | ( | char * | clrstr, |
| char * | b64dst | ||
| ) |
b64_encode - encode a b64 based char
| *clrstr | - the char to encode |
| *b64dst | - the encoded char |
Definition at line 66 of file b64_encode.c.
References encodeblock().
| void decodeblock | ( | unsigned char | in[], |
| unsigned char ** | clrstr | ||
| ) |
Definition at line 20 of file b64_encode.c.
Referenced by b64_decode().
| void encodeblock | ( | unsigned char | in[], |
| char | b64str[], | ||
| int | len | ||
| ) |
Definition at line 54 of file b64_encode.c.
References b64.
Referenced by b64_encode().
| char b64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" |
Definition at line 17 of file b64_encode.c.
Referenced by b64_decode(), and encodeblock().