Apache Portable Runtime
Functions
apr_base64.h File Reference

APR-UTIL Base64 Encoding. More...

#include "apu.h"
#include "apr_general.h"

Go to the source code of this file.

Functions

int apr_base64_encode_len (int len)
 
int apr_base64_encode (char *coded_dst, const char *plain_src, int len_plain_src)
 
int apr_base64_encode_binary (char *coded_dst, const unsigned char *plain_src, int len_plain_src)
 
char * apr_pbase64_encode (apr_pool_t *p, const char *string)
 
int apr_base64_decode_len (const char *coded_src)
 
int apr_base64_decode (char *plain_dst, const char *coded_src)
 
int apr_base64_decode_binary (unsigned char *plain_dst, const char *coded_src)
 
char * apr_pbase64_decode (apr_pool_t *p, const char *bufcoded)
 

Detailed Description

APR-UTIL Base64 Encoding.