Home --> Documentations --> PJLIB-UTIL Reference
Go to the documentation of this file.
19#ifndef __PJLIB_UTIL_BASE64_H__
20#define __PJLIB_UTIL_BASE64_H__
42#define PJ_BASE256_TO_BASE64_LEN(len) (len * 4 / 3 + 3)
48#define PJ_BASE64_TO_BASE256_LEN(len) (len * 3 / 4)
65 char *output, int *out_len);
pj_status_t pj_base64_encode(const pj_uint8_t *input, int in_len, char *output, int *out_len)
pj_status_t pj_base64_decode(const pj_str_t *input, pj_uint8_t *out, int *out_len)
PJLIB-UTIL Open Source, small footprint, and portable asynchronous/caching DNS resolver, text scanner, STUN client, and XML library
Copyright (C) 2006-2009 Teluu Inc.
|