设为首页收藏本站language 语言切换
查看: 2477|回复: 0
收起左侧

字符串可逆算法

[复制链接]
发表于 2010-2-24 13:43:21 | 显示全部楼层 |阅读模式
<OL><LI><CODE><FONT face=新宋体>&lt;?php </FONT></CODE><LI><CODE><FONT face=新宋体>function koko_encode($code, $seed = 'peeper.cn') { </FONT></CODE><LI><CODE><FONT face=新宋体>   $code = <A href="http://www.php.net/manual/zh/function.strtoupper"><U><FONT color=#0000ff>strtoupper</FONT></U></A>($code); </FONT></CODE><LI><CODE><FONT face=新宋体>   $clen = <A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($code); </FONT></CODE><LI><LI><CODE><FONT face=新宋体>   $hash = <A href="http://www.php.net/manual/zh/function.strtoupper"><U><FONT color=#0000ff>strtoupper</FONT></U></A>(<A href="http://www.php.net/manual/zh/function.md5"><U><FONT color=#0000ff>md5</FONT></U></A>($seed)); </FONT></CODE><LI><CODE><FONT face=新宋体>   $hlen = <A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($hash); </FONT></CODE><LI><LI><CODE><FONT face=新宋体>   $return = ''; </FONT></CODE><LI><CODE><FONT face=新宋体>   for ($i = 0; $i &lt; $clen; $i ++) { </FONT></CODE><LI><CODE><FONT face=新宋体>       $j = <A href="http://www.php.net/manual/zh/function.intval"><U><FONT color=#0000ff>intval</FONT></U></A>(<A href="http://www.php.net/manual/zh/function.fmod"><U><FONT color=#0000ff>fmod</FONT></U></A>($i, $hlen)); </FONT></CODE><LI><CODE><FONT face=新宋体>       $s = <A href="http://www.php.net/manual/zh/function.ord"><U><FONT color=#0000ff>ord</FONT></U></A>($code{$i}) + <A href="http://www.php.net/manual/zh/function.ord"><U><FONT color=#0000ff>ord</FONT></U></A>($hash{$j}); </FONT></CODE><LI><CODE><FONT face=新宋体>       $s = <A href="http://www.php.net/manual/zh/function.strtoupper"><U><FONT color=#0000ff>strtoupper</FONT></U></A>(<A href="http://www.php.net/manual/zh/function.dechex"><U><FONT color=#0000ff>dechex</FONT></U></A>($s)); </FONT></CODE><LI><CODE><FONT face=新宋体>       $return .= $s; </FONT></CODE><LI><CODE><FONT face=新宋体>   } </FONT></CODE><LI><CODE><FONT face=新宋体>   return $return; </FONT></CODE><LI><CODE><FONT face=新宋体>} </FONT></CODE><LI><LI><CODE><FONT face=新宋体>function koko_decode($code, $seed = 'peeper.cn') { </FONT></CODE><LI><CODE><FONT face=新宋体>   $code = <A href="http://www.php.net/manual/zh/function.strtoupper"><U><FONT color=#0000ff>strtoupper</FONT></U></A>($code); </FONT></CODE><LI><CODE><FONT face=新宋体>   $clen = <A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($code); </FONT></CODE><LI><CODE><FONT face=新宋体>   if (($clen % 2) != 0) { </FONT></CODE><LI><CODE><FONT face=新宋体>       return false; </FONT></CODE><LI><CODE><FONT face=新宋体>   } </FONT></CODE><LI><CODE><FONT face=新宋体>    </FONT></CODE><LI><CODE><FONT face=新宋体>   $hash = <A href="http://www.php.net/manual/zh/function.strtoupper"><U><FONT color=#0000ff>strtoupper</FONT></U></A>(<A href="http://www.php.net/manual/zh/function.md5"><U><FONT color=#0000ff>md5</FONT></U></A>($seed)); </FONT></CODE><LI><CODE><FONT face=新宋体>   $hlen = <A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($hash); </FONT></CODE><LI><LI><CODE><FONT face=新宋体>   $unit = array(); </FONT></CODE><LI><CODE><FONT face=新宋体>   for ($i = 0; $i &lt; $clen; $i += 2) { </FONT></CODE><LI><CODE><FONT face=新宋体>       $unit[] = $code{$i} . $code{$i + 1}; </FONT></CODE><LI><CODE><FONT face=新宋体>   } </FONT></CODE><LI><CODE><FONT face=新宋体>   $size = <A href="http://www.php.net/manual/zh/function.count"><U><FONT color=#0000ff>count</FONT></U></A>($unit); </FONT></CODE><LI><LI><CODE><FONT face=新宋体>   $return = ''; </FONT></CODE><LI><CODE><FONT face=新宋体>   for ($i = 0; $i &lt; $size; $i ++ ) { </FONT></CODE><LI><CODE><FONT face=新宋体>       $j = <A href="http://www.php.net/manual/zh/function.intval"><U><FONT color=#0000ff>intval</FONT></U></A>(<A href="http://www.php.net/manual/zh/function.fmod"><U><FONT color=#0000ff>fmod</FONT></U></A>($i, $hlen)); </FONT></CODE><LI><CODE><FONT face=新宋体>       $s = <A href="http://www.php.net/manual/zh/function.intval"><U><FONT color=#0000ff>intval</FONT></U></A>(<A href="http://www.php.net/manual/zh/function.hexdec"><U><FONT color=#0000ff>hexdec</FONT></U></A>($unit[$i])) - <A href="http://www.php.net/manual/zh/function.ord"><U><FONT color=#0000ff>ord</FONT></U></A>($hash{$j}); </FONT></CODE><LI><CODE><FONT face=新宋体>       $return .= <A href="http://www.php.net/manual/zh/function.chr"><U><FONT color=#0000ff>chr</FONT></U></A>($s); </FONT></CODE><LI><CODE><FONT face=新宋体>   } </FONT></CODE><LI><CODE><FONT face=新宋体>   return <A href="http://www.php.net/manual/zh/function.strtolower"><U><FONT color=#0000ff>strtolower</FONT></U></A>($return); </FONT></CODE><LI><CODE><FONT face=新宋体>} </FONT></CODE><LI><CODE><FONT face=新宋体>?&gt;</FONT></CODE></LI></OL>
您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-4-5 20:01 , Processed in 0.105158 second(s), 24 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表