Searched refs:decoded (Results 1 - 2 of 2) sorted by relevance

/httpd/modules/session/
H A Dmod_session_crypto.c234 char *decoded; local
240 decoded = apr_palloc(r->pool, apr_base64_decode_len(in));
241 decodedlen = apr_base64_decode(decoded, in);
242 decoded[decodedlen] = '\0';
253 char *slider = decoded;
258 (unsigned char *)decoded, sizeof(apr_uuid_t),
281 /* sanity check - decoded too short? */
289 /* bypass the salt at the start of the decoded block */
301 /* bypass the iv at the start of the decoded block */
/httpd/server/
H A Dutil.c1731 char decoded; local
1732 decoded = x2c(y + 1);
1733 if ((decoded == '\0')
1734 || (forbid && ap_strchr_c(forbid, decoded))) {
1736 *x = decoded;
1739 else if (reserved && ap_strchr_c(reserved, decoded)) {
1745 *x = decoded;
2307 char *decoded; local
2310 decoded = (char *) apr_palloc(p, 1 + apr_base64_decode_len(bufcoded));
2311 l = apr_base64_decode(decoded, bufcode
[all...]

Completed in 1034 milliseconds