60APU_DECLARE(
int) apr_base64_encode_len(
int len);
69APU_DECLARE(
int) apr_base64_encode(
char * coded_dst,
const char *plain_src,
79APU_DECLARE(
int) apr_base64_encode_binary(
char * coded_dst,
80 const unsigned char *plain_src,
89APU_DECLARE(
int) apr_base64_decode_len(
const char * coded_src);
97APU_DECLARE(
int) apr_base64_decode(
char * plain_dst,
const char *coded_src);
105APU_DECLARE(
int) apr_base64_decode_binary(
unsigned char * plain_dst,
106 const char *coded_src);
APR Miscellaneous library routines.