- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
function hash($password='', $unique_id=0)
{
$unique_id = $this-> unique_id();// by Lebnik: rand(0, time());
$itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
$random_state = $unique_id;
$random = '';
$count = 6;
//
if (($fh = @fopen('/dev/urandom', 'rb')))
{
$random = fread($fh, $count);
fclose($fh);
}
if (strlen($random) < $count)
{
$random = '';
for ($i = 0; $i < $count; $i += 16)
{
$random_state = md5($unique_id . $random_state);
$random .= pack('H*', md5($random_state));
}
$random = substr($random, 0, $count);
}
$hash = $this-> hash_crypt_private($password, $this-> hash_gensalt_private($random, $itoa64), $itoa64);
if (strlen($hash) == 34)
{
return $hash;
}
return md5($password);
}
guest 31.01.2012 14:42 # 0
Tsukasa-mixer 31.01.2012 14:46 # 0
bugmenot 31.01.2012 18:51 # +1
http://yapro.ru/uploads/users/1/2011/06/16/1.1308210295.png
Steve_Brown 31.01.2012 15:06 # +3
ZX_Spectrum 04.02.2012 05:42 # 0
1. минимальные системные требования
Tsukasa-mixer 31.01.2012 15:17 # 0
AlexanderC 31.01.2012 15:37 # −1
nucleartux 31.01.2012 16:02 # +3
guest 31.01.2012 16:28 # 0
wvxvw 31.01.2012 17:36 # 0
Tsukasa-mixer 31.01.2012 18:57 # 0
roman-kashitsyn 01.02.2012 23:58 # 0
bugmenot 02.02.2012 09:36 # 0
LiteError 01.02.2012 18:52 # 0
Vasiliy 02.02.2012 08:14 # 0
guest8 09.04.2019 12:36 # −999