标签: 解密
thumbnail
php

PHP 简单的加密解密方法

本算法的基础:给定字符A B,A^B=C,C^B=A,即两次异或运算可得到原字符。实现代码如下: /** * @desc加密 * @param string $str 待加密字符串 * @param st……
版权声明