PHP终极加密功能

2015-03-03 0 674
PHP终极加密功能
    // f(ucking) u(ncrackable) e(ncryption) function by BlackHatDBL (www.netforme.net)  
    function fue($hash,$times) {  
        // Execute the encryption(s) as many times as the user wants  
        for($i=$times;$i>0;$i--) {  
            // Encode with base64...  
            $hash=base64_encode($hash);  
            // and md5...  
            $hash=md5($hash);  
            // sha1...  
            $hash=sha1($hash);  
            // sha256... (one more)  
            $hash=hash("sha256", $hash);  
            // sha512  
            $hash=hash("sha512", $hash);  
      
        }  
        // Finaly, when done, return the value  
        return $hash;  
    }  

遇见资源网 php PHP终极加密功能 http://www.ox520.com/7397.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务