crypt_res 156 ext/standard/crypt.c char *crypt_res; crypt_res 176 ext/standard/crypt.c crypt_res = php_sha512_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); crypt_res 177 ext/standard/crypt.c if (!crypt_res) { crypt_res 191 ext/standard/crypt.c crypt_res = php_sha256_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); crypt_res 192 ext/standard/crypt.c if (!crypt_res) { crypt_res 210 ext/standard/crypt.c crypt_res = php_crypt_blowfish_rn(password, salt, output, sizeof(output)); crypt_res 211 ext/standard/crypt.c if (!crypt_res) { crypt_res 238 ext/standard/crypt.c crypt_res = _crypt_extended_r(password, salt, &buffer); crypt_res 239 ext/standard/crypt.c if (!crypt_res || (salt[0] == '*' && salt[1] == '0')) { crypt_res 242 ext/standard/crypt.c result = zend_string_init(crypt_res, strlen(crypt_res), 0); crypt_res 265 ext/standard/crypt.c crypt_res = crypt_r(password, salt, &buffer); crypt_res 266 ext/standard/crypt.c if (!crypt_res || (salt[0] == '*' && salt[1] == '0')) { crypt_res 269 ext/standard/crypt.c result = zend_string_init(crypt_res, strlen(crypt_res), 0);