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

php写的Passport解密函数

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

  1. /**

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

  10. // $txt 的结果为加密后的字串经过 base64 解码,然后与私有密匙一起,

  11. // 经过 passport_key() 函数处理后的返回值
  12. $txt = passport_key(base64_decode($txt), $key);

  13. // 变量初始化

  14. $tmp = '';

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

  16. for ($i = 0; $i < strlen($txt); $i++) {
  17. // $tmp 字串在末尾增加一位,其内容为 $txt 的第 $i 位,
  18. // 与 $txt 的第 $i + 1 位取异或。然后 $i = $i + 1
  19. $tmp .= $txt[$i] ^ $txt[++$i];
  20. }

  21. // 返回 $tmp 的值作为结果

  22. return $tmp;

  23. }

  24. /**

  25. * Passport 密匙处理函数
  26. *
  27. * @param string 待加密或待解密的字串
  28. * @param string 私有密匙(用于解密和加密)
  29. *
  30. * @return string 处理后的密匙
  31. */
  32. function passport_key($txt, $encrypt_key) {

  33. // 将 $encrypt_key 赋为 $encrypt_key 经 md5() 后的值

  34. $encrypt_key = md5($encrypt_key);

  35. // 变量初始化

  36. $ctr = 0;
  37. $tmp = '';

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

  39. for($i = 0; $i < strlen($txt); $i++) {
  40. // 如果 $ctr = $encrypt_key 的长度,则 $ctr 清零
  41. $ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
  42. // $tmp 字串在末尾增加一位,其内容为 $txt 的第 $i 位,
  43. // 与 $encrypt_key 的第 $ctr + 1 位取异或。然后 $ctr = $ctr + 1
  44. $tmp .= $txt[$i] ^ $encrypt_key[$ctr++];
  45. }

  46. // 返回 $tmp 的值作为结果

  47. return $tmp;
  48. }
  49. ?>

人气教程排行