php实现可逆加密的方法_php技巧
程序员文章站
2022-05-19 21:21:05
...
本文实例讲述了php实现可逆加密的方法。分享给大家供大家参考。具体如下:
这里介绍的可以逆转加密类,没有密钥很难破解。
PHP代码如下:
key); } return $txt=urlencode(base64_encode(urlencode($txt))); } function decode($txt){ $txt=urldecode(base64_decode($txt)); for($i=0;$ikey); } return $txt; } } ?>
discuz加密解密:
0)&&substr($result,10,16)==substr(md5(substr($result,26).$keyb),0,16)){ returnsubstr($result,26); }else{ return''; } }else{ return $keyc.str_replace('=','',base64_encode($result)); } } ?>
希望本文所述对大家的php程序设计有所帮助。
上一篇: php ajax实现验证用户名是否存在