MCPcopy Create free account
hub / github.com/apache/httpd / ap_pbase64decode

Function ap_pbase64decode

server/util.c:2477–2485  ·  view source on GitHub ↗

simple 'pool' alloc()ing glue to apr_base64.c */

Source from the content-addressed store, hash-verified

2475/* simple 'pool' alloc()ing glue to apr_base64.c
2476 */
2477AP_DECLARE(char *) ap_pbase64decode(apr_pool_t *p, const char *bufcoded)
2478{
2479 char *decoded;
2480
2481 decoded = (char *) apr_palloc(p, apr_base64_decode_len(bufcoded));
2482 apr_base64_decode(decoded, bufcoded);
2483
2484 return decoded;
2485}
2486
2487AP_DECLARE(char *) ap_pbase64encode(apr_pool_t *p, char *string)
2488{

Callers 8

get_basic_authFunction · 0.85
proxy_ftp_handlerFunction · 0.85
ssl_hook_UserCheckFunction · 0.85
handle_echoFunction · 0.85
handle_setFunction · 0.85
ap_get_basic_auth_pwFunction · 0.85
unbase64_funcFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected