X7ROOT File Manager
Current Path:
/opt/alt/php53/usr/include/php/ext/standard
opt
/
alt
/
php53
/
usr
/
include
/
php
/
ext
/
standard
/
??
..
??
base64.h
(1.57 KB)
??
basic_functions.h
(6.82 KB)
??
crc32.h
(4.78 KB)
??
credits.h
(1.7 KB)
??
credits_ext.h
(5.49 KB)
??
credits_sapi.h
(1.54 KB)
??
crypt_blowfish.h
(1.05 KB)
??
crypt_freesec.h
(949 B)
??
css.h
(1.21 KB)
??
cyr_convert.h
(1.24 KB)
??
datetime.h
(1.37 KB)
??
dl.h
(1.57 KB)
??
exec.h
(1.66 KB)
??
file.h
(4.39 KB)
??
flock_compat.h
(2.07 KB)
??
fsock.h
(1.57 KB)
??
head.h
(1.59 KB)
??
html.h
(2.16 KB)
??
info.h
(3.52 KB)
??
md5.h
(2.12 KB)
??
microtime.h
(1.33 KB)
??
pack.h
(1.25 KB)
??
pageinfo.h
(1.43 KB)
??
php_array.h
(4.28 KB)
??
php_assert.h
(1.4 KB)
??
php_browscap.h
(1.3 KB)
??
php_crypt.h
(1.52 KB)
??
php_crypt_r.h
(2 KB)
??
php_dir.h
(1.57 KB)
??
php_dns.h
(2.82 KB)
??
php_ext_syslog.h
(1.51 KB)
??
php_filestat.h
(3.28 KB)
??
php_fopen_wrappers.h
(1.9 KB)
??
php_ftok.h
(1.23 KB)
??
php_http.h
(1.75 KB)
??
php_image.h
(2.33 KB)
??
php_incomplete_class.h
(2.45 KB)
??
php_iptc.h
(1.24 KB)
??
php_lcg.h
(1.5 KB)
??
php_link.h
(1.34 KB)
??
php_mail.h
(1.37 KB)
??
php_math.h
(4.53 KB)
??
php_metaphone.h
(1.21 KB)
??
php_rand.h
(2.54 KB)
??
php_smart_str.h
(6.38 KB)
??
php_smart_str_public.h
(1.29 KB)
??
php_standard.h
(2.19 KB)
??
php_string.h
(5.98 KB)
??
php_type.h
(1.55 KB)
??
php_uuencode.h
(1.46 KB)
??
php_var.h
(5.54 KB)
??
php_versioning.h
(1.37 KB)
??
proc_open.h
(1.81 KB)
??
quot_print.h
(1.51 KB)
??
scanf.h
(2.27 KB)
??
sha1.h
(1.71 KB)
??
streamsfuncs.h
(2.75 KB)
??
uniqid.h
(1.24 KB)
??
url.h
(2.22 KB)
??
url_scanner_ex.h
(2.09 KB)
??
winver.h
(3.25 KB)
Editing: crypt_freesec.h
/* $Id$ */ #ifndef _CRYPT_FREESEC_H #define _CRYPT_FREESEC_H #if PHP_WIN32 # include "win32/php_stdint.h" # ifndef inline # define inline __inline # endif #else # include "php_config.h" # if HAVE_INTTYPES_H # include <inttypes.h> # elif HAVE_STDINT_H # include <stdint.h> # endif # ifndef HAVE_UINT32_T # if SIZEOF_INT == 4 typedef unsigned int uint32_t; # elif SIZEOF_LONG == 4 typedef unsigned long int uint32_t; # endif # endif #endif #define MD5_HASH_MAX_LEN 120 struct php_crypt_extended_data { int initialized; uint32_t saltbits; uint32_t old_salt; uint32_t en_keysl[16], en_keysr[16]; uint32_t de_keysl[16], de_keysr[16]; uint32_t old_rawkey0, old_rawkey1; char output[21]; }; /* * _crypt_extended_init() must be called explicitly before first use of * _crypt_extended_r(). */ void _crypt_extended_init(void); char *_crypt_extended_r(const char *key, const char *setting, struct php_crypt_extended_data *data); #endif
Upload File
Create Folder