Apache2
|
APR-UTIL Base64 Encoding. More...
Go to the source code of this file.
Functions | |
int | apr_base64_encode_len (int len) __attribute__((pure)) |
int | apr_base64_encode (char *coded_dst, const char *plain_src, int len_plain_src) __attribute__((nonnull(1 |
int int | apr_base64_encode_binary (char *coded_dst, const unsigned char *plain_src, int len_plain_src) __attribute__((nonnull(1 |
int int char * | apr_pbase64_encode (apr_pool_t *p, const char *string) __attribute__((nonnull(1 |
int int char int | apr_base64_decode_len (const char *coded_src) __attribute__((nonnull(1))) __attribute__((pure)) |
int | apr_base64_decode (char *plain_dst, const char *coded_src) __attribute__((nonnull(1 |
int int | apr_base64_decode_binary (unsigned char *plain_dst, const char *coded_src) __attribute__((nonnull(1 |
int int char * | apr_pbase64_decode (apr_pool_t *p, const char *bufcoded) __attribute__((nonnull(1 |
APR-UTIL Base64 Encoding.