微擎密码加密方式
/*生成salt */ function random($length, $numeric = FALSE) { $seed = base_convert(md5(microtime() . $_SERVER['DOCUMENT_ROOT']), 16, $numeric ? 10 : 35); $seed = $numeric ? (str_replace('0', '', $seed) . '012340567890') : ($seed . 'zZ' . strtoupper($seed)); if ($numeric) { $hash = ''; } else { $hash = chr(rand(1, 26) + rand(0, 1) * 32 + 64); $length--; } $max = strlen($seed) - 1; for ($i = 0; $i < $length; $i++) { $hash .= $seed{mt_rand(0, $max)}; } return $hash; }
/*生成微擎密码*/ $passwordinput = "{$data['password']}-{$data['salt']}-{$_W['config']['setting']['authkey']}"; $newPwd=sha1($passwordinput); 这个newPwd 就是微擎用户加密的方式
Dcr163的博客
http://dcr163.cn/112.html(转载时请注明本文出处及文章链接)