[PHP]加密解密代码
发布于 2021-05-12 23:39 ,所属分类:区块连和PHP开发学习资料

<?php$Cache = new ESApi();$json = $Cache->encoded_url($_REQUEST['txt'],$_REQUEST['key']);echo json_encode($json,JSON_PRETTY_PRINT|JSON_UNESCAPED_UNICODE);class ESApi{//编码public function encoded_url($txt, $key = ''){$txt = $txt . $key;$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-=+";$nh = rand(0, 64);$ch = $chars[$nh];$mdKey = md5($key . $ch);$mdKey = substr($mdKey, $nh % 8, $nh % 8 + 7);$txt = base64_encode($txt);$tmp = '';$i = 0;$j = 0;$k = 0;for ($i = 0; $i < strlen($txt); $i++) {$k = $k == strlen($mdKey) ? 0 : $k;$j = ($nh + strpos($chars, $txt[$i]) + ord($mdKey[$k++])) % 64;$tmp .= $chars[$j];}return urlencode(base64_encode($ch . $tmp));}//解码public function decode_url($txt, $key = ''){$txt = base64_decode(urldecode($txt));$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-=+";$ch = $txt[0];if(!empty($txt)){$nh = strpos($chars, $ch);}else{$nh = $ch;}$mdKey = md5($key . $ch);$mdKey = substr($mdKey, $nh % 8, $nh % 8 + 7);$txt = substr($txt, 1);$tmp = '';$i = 0;$j = 0;$k = 0;for ($i = 0; $i < strlen($txt); $i++) {$k = $k == strlen($mdKey) ? 0 : $k;$j = strpos($chars, $txt[$i]) - $nh - ord($mdKey[$k++]);while ($j < 0) {$j += 64;}$tmp .= $chars[$j];}return trim(base64_decode($tmp), $key);}}

点分享

点收藏

点点赞

点在看







![[加密解密] 北航软件学院教授密码学基础视频课程 郭华主讲 共16课](https://static.kouhao8.com/sucaidashi/xkbb/85cceb05f185613d9b67e8b0f92b976c.jpg?x-oss-process=image/format,webp/resize,w_88/crop,w_88,h_88,g_nw)


![[其他] Virink主讲的PHP代码审计实战视频课程 PHP代码安全检测教程 共15课](https://static.kouhao8.com/sucaidashi/xkbb/a0e43d92e5989748e62ef82911d59d24.png?x-oss-process=image/format,webp/resize,w_88/crop,w_88,h_88,g_nw)
![[其他] Virink主讲的PHP代码审计实战视频课程 PHP代码安全检测教程 共15课](https://static.kouhao8.com/sucaidashi/xkbb/6b86a88f49754d3111cbb5925ff42cf4.jpg?x-oss-process=image/format,webp/resize,w_88/crop,w_88,h_88,g_nw)







![[微信] 微信公众平台PHP开发搭建与揭秘(附代码)](https://static.kouhao8.com/sucaidashi/xkbb/e7d66f579c611c2169186426ea6f8b9b.jpg?x-oss-process=image/format,webp/resize,w_88/crop,w_88,h_88,g_nw)

![[微信] 微信公众平台PHP开发搭建与揭秘(附代码)](https://static.kouhao8.com/sucaidashi/xkbb/cce0cbfcce42787e572f6df16e475cc9.jpg?x-oss-process=image/format,webp/resize,w_88/crop,w_88,h_88,g_nw)









相关资源