UCenter的可逆加密函數authcode

來源:互聯網
上載者:User
  1. //可逆的加密函數

  2. function authcode($string, $operation = 'DECODE', $key = '', $expiry = 0) {

  3. $ckey_length = 4; // 隨機密鑰長度 取值 0-32;

  4. // 加入隨機密鑰,可以令密文無任何規律,即便是原文和密鑰完全相同,加密結果也會每次不同,增大破解難度。
  5. // 取值越大,密文變動規律越大,密文變化 = 16 的 $ckey_length 次方
  6. // 當此值為 0 時,則不產生隨機密鑰
  7. $key = md5($key ? $key : UC_KEY);
  8. $keya = md5(substr($key, 0, 16));
  9. $keyb = md5(substr($key, 16, 16));
  10. $keyc = $ckey_length ? ($operation == 'DECODE' ? substr($string, 0, $ckey_length): substr(md5(microtime()), -$ckey_length)) : '';

  11. $cryptkey = $keya.md5($keya.$keyc);

  12. $key_length = strlen($cryptkey);

  13. $string = $operation == 'DECODE' ? base64_decode(substr($string, $ckey_length)) : sprintf('%010d', $expiry ? $expiry + time() : 0).substr(md5($string.$keyb), 0, 16).$string;

  14. $string_length = strlen($string);

  15. $result = '';

  16. $box = range(0, 255);

  17. $rndkey = array();

  18. for($i = 0; $i <= 255; $i++) {
  19. $rndkey[$i] = ord($cryptkey[$i % $key_length]);
  20. }

  21. for($j = $i = 0; $i < 256; $i++) {

  22. $j = ($j + $box[$i] + $rndkey[$i]) % 256;
  23. $tmp = $box[$i];
  24. $box[$i] = $box[$j];
  25. $box[$j] = $tmp;
  26. }

  27. for($a = $j = $i = 0; $i < $string_length; $i++) {

  28. $a = ($a + 1) % 256;
  29. $j = ($j + $box[$a]) % 256;
  30. $tmp = $box[$a];
  31. $box[$a] = $box[$j];
  32. $box[$j] = $tmp;
  33. $result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256]));
  34. }

  35. if($operation == 'DECODE') {

  36. if((substr($result, 0, 10) == 0 || substr($result, 0, 10) - time() > 0) && substr($result, 10, 16) == substr(md5(substr($result, 26).$keyb), 0, 16)) {
  37. return substr($result, 26);
  38. } else {
  39. return '';
  40. }
  41. } else {
  42. return $keyc.str_replace('=', '', base64_encode($result));
  43. }
  44. }

  45. //調用樣本

  46. $string = authcode("Hello","ENCODE","HTML_TCCJ_AUTH");
  47. echo $string,'
    ';
  48. echo authcode($string,"DECODE","HTML_TCCJ_AUTH"),'
    ';
  49. ?>

複製代碼
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.