Lines Matching refs:output
193 char output[MD5_HASH_MAX_LEN]; in PHP_FUNCTION() local
195 RETURN_STRING(php_md5_crypt_r(str, salt, output), 1); in PHP_FUNCTION()
199 char *output; in PHP_FUNCTION() local
203 output = emalloc(needed); in PHP_FUNCTION()
206 crypt_res = php_sha512_crypt_r(str, salt, output, needed); in PHP_FUNCTION()
214 RETVAL_STRING(output, 1); in PHP_FUNCTION()
217 memset(output, 0, needed); in PHP_FUNCTION()
218 efree(output); in PHP_FUNCTION()
222 char *output; in PHP_FUNCTION() local
226 output = emalloc(needed); in PHP_FUNCTION()
229 crypt_res = php_sha256_crypt_r(str, salt, output, needed); in PHP_FUNCTION()
237 RETVAL_STRING(output, 1); in PHP_FUNCTION()
240 memset(output, 0, needed); in PHP_FUNCTION()
241 efree(output); in PHP_FUNCTION()
250 char output[PHP_MAX_SALT_LEN + 1]; in PHP_FUNCTION() local
252 memset(output, 0, PHP_MAX_SALT_LEN + 1); in PHP_FUNCTION()
254 crypt_res = php_crypt_blowfish_rn(str, salt, output, sizeof(output)); in PHP_FUNCTION()
262 RETVAL_STRING(output, 1); in PHP_FUNCTION()
265 memset(output, 0, PHP_MAX_SALT_LEN + 1); in PHP_FUNCTION()