PHP加密函数_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > PHP加密函数

PHP加密函数

 2010/9/19 23:34:11  richyang  http://richyang.javaeye.com  我要评论(0)
  • 摘要:随着计算机硬件的快速发展,对于相对简单的密码采用md5加密可能很容易就破解出来了。所以这里采用hash的算法加密,长度要比md5的长一些./***密码加密函数*@paramstring$password要加密的字符串*@paramstring$random随机码*@returnstring*/functionpassword_hash($password,$random=null){if($random===null){$random=substr(md5(uniqid(rand(),true
  • 标签:PHP加密函数
        随着计算机硬件的快速发展,对于相对简单的密码采用md5加密可能很容易就破解出来了。所以这里采用hash的算法加密,长度要比md5的长一些.
/**
 * 密码加密函数
 * @param string $password 要加密的字符串
 * @param string $random 随机码
 * @return string
 */
function password_hash($password,$random = null){
    if($random === null){
        $random = substr(md5(uniqid(rand(),true)),0,9);
    }else{
        $random = substr($random,0,9);
    }
    return $random.sha1($password.$random);
}

//测试一下
echo password_hash("helloworld");
echo password_hash("helloworld",substr("加密过后的内容"),0,9);
  • 相关文章
发表评论
用户名: 匿名