Searched refs:php_base64_encode (Results 1 – 7 of 7) sorted by relevance
/PHP-5.4/ext/standard/ |
H A D | base64.h | 27 PHPAPI extern unsigned char *php_base64_encode(const unsigned char *, int, int *);
|
H A D | base64.c | 56 PHPAPI unsigned char *php_base64_encode(const unsigned char *str, int length, int *ret_length) /* {… in php_base64_encode() function 229 result = php_base64_encode((unsigned char*)str, str_len, &ret_length); in PHP_FUNCTION()
|
H A D | http_fopen_wrapper.c | 536 tmp = (char*)php_base64_encode((unsigned char*)scratch, strlen(scratch), NULL); in php_stream_url_wrap_http_ex()
|
/PHP-5.4/ext/soap/ |
H A D | php_http.c | 52 buf = php_base64_encode((unsigned char*)auth.c, auth.len, &len); in proxy_authentication() 82 buf = php_base64_encode((unsigned char*)auth.c, auth.len, &len); in basic_authentication() 735 buf = php_base64_encode((unsigned char*)auth.c, auth.len, &len); in make_http_soap_request()
|
H A D | php_encoding.c | 968 str = php_base64_encode((unsigned char*)Z_STRVAL_P(data), Z_STRLEN_P(data), &str_len); in to_xml_base64() 977 str = php_base64_encode((unsigned char*)Z_STRVAL(tmp), Z_STRLEN(tmp), &str_len); in to_xml_base64()
|
/PHP-5.4/ext/iconv/ |
H A D | iconv.c | 1245 encoded = (char *) php_base64_encode((unsigned char *) buf, (int)(out_size - out_left), &dummy); in _php_iconv_mime_encode()
|
/PHP-5.4/ext/openssl/ |
H A D | openssl.c | 4899 base64_str = (char*)php_base64_encode(outbuf, outlen, &base64_str_len); in PHP_FUNCTION()
|
Completed in 53 milliseconds