当前位置:Gxlcms > PHP教程 > php写的Passport加密函数

php写的Passport加密函数

时间:2021-07-01 10:21:17 帮助过:28人阅读

  1. /**

  2. * Passport 加密函数
  3. *
  4. * @param string 等待加密的原字串
  5. * @param string 私有密匙(用于解密和加密)
  6. *
  7. * @return string 原字串经过私有密匙加密后的结果
  8. */
  9. function passport_encrypt($txt, $key) {

  10. // 使用随机数发生器产生 0~32000 的值并 MD5()

  11. srand((double)microtime() * 1000000);
  12. $encrypt_key = md5(rand(0, 32000));

  13. // 变量初始化

  14. $ctr = 0;
  15. $tmp = '';

  16. // for 循环,$i 为从 0 开始,到小于 $txt 字串长度的整数

  17. for($i = 0; $i < strlen($txt); $i++) {
  18. // 如果 $ctr = $encrypt_key 的长度,则 $ctr 清零
  19. $ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
  20. // $tmp 字串在末尾增加两位,其第一位内容为 $encrypt_key 的第 $ctr 位,
  21. // 第二位内容为 $txt 的第 $i 位与 $encrypt_key 的 $ctr 位取异或。然后 $ctr = $ctr + 1
  22. $tmp .= $encrypt_key[$ctr].($txt[$i] ^ $encrypt_key[$ctr++]);
  23. }

  24. // 返回结果,结果为 passport_key() 函数返回值的 base64 编码结果

  25. return base64_encode(passport_key($tmp, $key));
  26. }
  27. ?>

如果想对加密后的内容进行解密,您可以参考 php写的passport解密函数。

人气教程排行