#include "base64.h"
#include <string.h>
Go to the source code of this file.
Functions | |
char * | base64_encode (const char *str, int length) |
char | ofs (char p) |
char * | base64_decode (char *str, int length) |
Variables | |
char * | alphabet |
|
Decode Base64 encoded str Definition at line 88 of file base64.cc. References ofs(). |
|
Base 64 encode str Definition at line 22 of file base64.cc. References alphabet. |
|
Definition at line 81 of file base64.cc. References alphabet. Referenced by base64_decode(). |
|
Initial value: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" "0123456789+/=" Definition at line 19 of file base64.cc. Referenced by base64_encode(), and ofs(). |