MD5.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. class PHPExcel_Reader_Excel5_MD5
  8. {
  9. // Context
  10. private $a;
  11. private $b;
  12. private $c;
  13. private $d;
  14. /**
  15. * MD5 stream constructor
  16. */
  17. public function __construct()
  18. {
  19. $this->reset();
  20. }
  21. /**
  22. * Reset the MD5 stream context
  23. */
  24. public function reset()
  25. {
  26. $this->a = 0x67452301;
  27. $this->b = 0xEFCDAB89;
  28. $this->c = 0x98BADCFE;
  29. $this->d = 0x10325476;
  30. }
  31. /**
  32. * Get MD5 stream context
  33. *
  34. * @return string
  35. */
  36. public function getContext()
  37. {
  38. $s = '';
  39. foreach (array('a', 'b', 'c', 'd') as $i) {
  40. $v = $this->{$i};
  41. $s .= chr($v & 0xff);
  42. $s .= chr(($v >> 8) & 0xff);
  43. $s .= chr(($v >> 16) & 0xff);
  44. $s .= chr(($v >> 24) & 0xff);
  45. }
  46. return $s;
  47. }
  48. /**
  49. * Add data to context
  50. *
  51. * @param string $data Data to add
  52. */
  53. public function add($data)
  54. {
  55. $words = array_values(unpack('V16', $data));
  56. $A = $this->a;
  57. $B = $this->b;
  58. $C = $this->c;
  59. $D = $this->d;
  60. $F = array('PHPExcel_Reader_Excel5_MD5','f');
  61. $G = array('PHPExcel_Reader_Excel5_MD5','g');
  62. $H = array('PHPExcel_Reader_Excel5_MD5','h');
  63. $I = array('PHPExcel_Reader_Excel5_MD5','i');
  64. /* ROUND 1 */
  65. self::step($F, $A, $B, $C, $D, $words[0], 7, 0xd76aa478);
  66. self::step($F, $D, $A, $B, $C, $words[1], 12, 0xe8c7b756);
  67. self::step($F, $C, $D, $A, $B, $words[2], 17, 0x242070db);
  68. self::step($F, $B, $C, $D, $A, $words[3], 22, 0xc1bdceee);
  69. self::step($F, $A, $B, $C, $D, $words[4], 7, 0xf57c0faf);
  70. self::step($F, $D, $A, $B, $C, $words[5], 12, 0x4787c62a);
  71. self::step($F, $C, $D, $A, $B, $words[6], 17, 0xa8304613);
  72. self::step($F, $B, $C, $D, $A, $words[7], 22, 0xfd469501);
  73. self::step($F, $A, $B, $C, $D, $words[8], 7, 0x698098d8);
  74. self::step($F, $D, $A, $B, $C, $words[9], 12, 0x8b44f7af);
  75. self::step($F, $C, $D, $A, $B, $words[10], 17, 0xffff5bb1);
  76. self::step($F, $B, $C, $D, $A, $words[11], 22, 0x895cd7be);
  77. self::step($F, $A, $B, $C, $D, $words[12], 7, 0x6b901122);
  78. self::step($F, $D, $A, $B, $C, $words[13], 12, 0xfd987193);
  79. self::step($F, $C, $D, $A, $B, $words[14], 17, 0xa679438e);
  80. self::step($F, $B, $C, $D, $A, $words[15], 22, 0x49b40821);
  81. /* ROUND 2 */
  82. self::step($G, $A, $B, $C, $D, $words[1], 5, 0xf61e2562);
  83. self::step($G, $D, $A, $B, $C, $words[6], 9, 0xc040b340);
  84. self::step($G, $C, $D, $A, $B, $words[11], 14, 0x265e5a51);
  85. self::step($G, $B, $C, $D, $A, $words[0], 20, 0xe9b6c7aa);
  86. self::step($G, $A, $B, $C, $D, $words[5], 5, 0xd62f105d);
  87. self::step($G, $D, $A, $B, $C, $words[10], 9, 0x02441453);
  88. self::step($G, $C, $D, $A, $B, $words[15], 14, 0xd8a1e681);
  89. self::step($G, $B, $C, $D, $A, $words[4], 20, 0xe7d3fbc8);
  90. self::step($G, $A, $B, $C, $D, $words[9], 5, 0x21e1cde6);
  91. self::step($G, $D, $A, $B, $C, $words[14], 9, 0xc33707d6);
  92. self::step($G, $C, $D, $A, $B, $words[3], 14, 0xf4d50d87);
  93. self::step($G, $B, $C, $D, $A, $words[8], 20, 0x455a14ed);
  94. self::step($G, $A, $B, $C, $D, $words[13], 5, 0xa9e3e905);
  95. self::step($G, $D, $A, $B, $C, $words[2], 9, 0xfcefa3f8);
  96. self::step($G, $C, $D, $A, $B, $words[7], 14, 0x676f02d9);
  97. self::step($G, $B, $C, $D, $A, $words[12], 20, 0x8d2a4c8a);
  98. /* ROUND 3 */
  99. self::step($H, $A, $B, $C, $D, $words[5], 4, 0xfffa3942);
  100. self::step($H, $D, $A, $B, $C, $words[8], 11, 0x8771f681);
  101. self::step($H, $C, $D, $A, $B, $words[11], 16, 0x6d9d6122);
  102. self::step($H, $B, $C, $D, $A, $words[14], 23, 0xfde5380c);
  103. self::step($H, $A, $B, $C, $D, $words[1], 4, 0xa4beea44);
  104. self::step($H, $D, $A, $B, $C, $words[4], 11, 0x4bdecfa9);
  105. self::step($H, $C, $D, $A, $B, $words[7], 16, 0xf6bb4b60);
  106. self::step($H, $B, $C, $D, $A, $words[10], 23, 0xbebfbc70);
  107. self::step($H, $A, $B, $C, $D, $words[13], 4, 0x289b7ec6);
  108. self::step($H, $D, $A, $B, $C, $words[0], 11, 0xeaa127fa);
  109. self::step($H, $C, $D, $A, $B, $words[3], 16, 0xd4ef3085);
  110. self::step($H, $B, $C, $D, $A, $words[6], 23, 0x04881d05);
  111. self::step($H, $A, $B, $C, $D, $words[9], 4, 0xd9d4d039);
  112. self::step($H, $D, $A, $B, $C, $words[12], 11, 0xe6db99e5);
  113. self::step($H, $C, $D, $A, $B, $words[15], 16, 0x1fa27cf8);
  114. self::step($H, $B, $C, $D, $A, $words[2], 23, 0xc4ac5665);
  115. /* ROUND 4 */
  116. self::step($I, $A, $B, $C, $D, $words[0], 6, 0xf4292244);
  117. self::step($I, $D, $A, $B, $C, $words[7], 10, 0x432aff97);
  118. self::step($I, $C, $D, $A, $B, $words[14], 15, 0xab9423a7);
  119. self::step($I, $B, $C, $D, $A, $words[5], 21, 0xfc93a039);
  120. self::step($I, $A, $B, $C, $D, $words[12], 6, 0x655b59c3);
  121. self::step($I, $D, $A, $B, $C, $words[3], 10, 0x8f0ccc92);
  122. self::step($I, $C, $D, $A, $B, $words[10], 15, 0xffeff47d);
  123. self::step($I, $B, $C, $D, $A, $words[1], 21, 0x85845dd1);
  124. self::step($I, $A, $B, $C, $D, $words[8], 6, 0x6fa87e4f);
  125. self::step($I, $D, $A, $B, $C, $words[15], 10, 0xfe2ce6e0);
  126. self::step($I, $C, $D, $A, $B, $words[6], 15, 0xa3014314);
  127. self::step($I, $B, $C, $D, $A, $words[13], 21, 0x4e0811a1);
  128. self::step($I, $A, $B, $C, $D, $words[4], 6, 0xf7537e82);
  129. self::step($I, $D, $A, $B, $C, $words[11], 10, 0xbd3af235);
  130. self::step($I, $C, $D, $A, $B, $words[2], 15, 0x2ad7d2bb);
  131. self::step($I, $B, $C, $D, $A, $words[9], 21, 0xeb86d391);
  132. $this->a = ($this->a + $A) & 0xffffffff;
  133. $this->b = ($this->b + $B) & 0xffffffff;
  134. $this->c = ($this->c + $C) & 0xffffffff;
  135. $this->d = ($this->d + $D) & 0xffffffff;
  136. }
  137. private static function f($X, $Y, $Z)
  138. {
  139. return (($X & $Y) | ((~ $X) & $Z)); // X AND Y OR NOT X AND Z
  140. }
  141. private static function g($X, $Y, $Z)
  142. {
  143. return (($X & $Z) | ($Y & (~ $Z))); // X AND Z OR Y AND NOT Z
  144. }
  145. private static function h($X, $Y, $Z)
  146. {
  147. return ($X ^ $Y ^ $Z); // X XOR Y XOR Z
  148. }
  149. private static function i($X, $Y, $Z)
  150. {
  151. return ($Y ^ ($X | (~ $Z))) ; // Y XOR (X OR NOT Z)
  152. }
  153. private static function step($func, &$A, $B, $C, $D, $M, $s, $t)
  154. {
  155. $A = ($A + call_user_func($func, $B, $C, $D) + $M + $t) & 0xffffffff;
  156. $A = self::rotate($A, $s);
  157. $A = ($B + $A) & 0xffffffff;
  158. }
  159. private static function rotate($decimal, $bits)
  160. {
  161. $binary = str_pad(decbin($decimal), 32, "0", STR_PAD_LEFT);
  162. return bindec(substr($binary, $bits).substr($binary, 0, $bits));
  163. }
  164. }