Lines Matching refs:output
158 char output[MD5_HASH_MAX_LEN], *out; in php_crypt() local
160 out = php_md5_crypt_r(password, salt, output); in php_crypt()
167 char *output; in php_crypt() local
168 output = emalloc(PHP_MAX_SALT_LEN); in php_crypt()
170 crypt_res = php_sha512_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); in php_crypt()
172 memset(output, 0, PHP_MAX_SALT_LEN); in php_crypt()
173 efree(output); in php_crypt()
176 *result = estrdup(output); in php_crypt()
177 memset(output, 0, PHP_MAX_SALT_LEN); in php_crypt()
178 efree(output); in php_crypt()
182 char *output; in php_crypt() local
183 output = emalloc(PHP_MAX_SALT_LEN); in php_crypt()
185 crypt_res = php_sha256_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); in php_crypt()
187 memset(output, 0, PHP_MAX_SALT_LEN); in php_crypt()
188 efree(output); in php_crypt()
191 *result = estrdup(output); in php_crypt()
192 memset(output, 0, PHP_MAX_SALT_LEN); in php_crypt()
193 efree(output); in php_crypt()
203 char output[PHP_MAX_SALT_LEN + 1]; in php_crypt() local
205 memset(output, 0, PHP_MAX_SALT_LEN + 1); in php_crypt()
207 crypt_res = php_crypt_blowfish_rn(password, salt, output, sizeof(output)); in php_crypt()
209 memset(output, 0, PHP_MAX_SALT_LEN + 1); in php_crypt()
212 *result = estrdup(output); in php_crypt()
213 memset(output, 0, PHP_MAX_SALT_LEN + 1); in php_crypt()