phpass.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <?php
  2. #
  3. # Portable PHP password hashing framework.
  4. #
  5. # Version 0.3 / genuine.
  6. #
  7. # Written by Solar Designer <solar at openwall.com> in 2004-2006 and placed in
  8. # the public domain. Revised in subsequent years, still public domain.
  9. #
  10. # There's absolutely no warranty.
  11. #
  12. # The homepage URL for this framework is:
  13. #
  14. # http://www.openwall.com/phpass/
  15. #
  16. # Please be sure to update the Version line if you edit this file in any way.
  17. # It is suggested that you leave the main version number intact, but indicate
  18. # your project name (after the slash) and add your own revision information.
  19. #
  20. # Please do not change the "private" password hashing method implemented in
  21. # here, thereby making your hashes incompatible. However, if you must, please
  22. # change the hash type identifier (the "$P$") to something different.
  23. #
  24. # Obviously, since this code is in the public domain, the above are not
  25. # requirements (there can be none), but merely suggestions.
  26. #
  27. class PasswordHash {
  28. var $itoa64;
  29. var $iteration_count_log2;
  30. var $portable_hashes;
  31. var $random_state;
  32. function PasswordHash($iteration_count_log2, $portable_hashes)
  33. {
  34. $this->itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
  35. if ($iteration_count_log2 < 4 || $iteration_count_log2 > 31)
  36. $iteration_count_log2 = 8;
  37. $this->iteration_count_log2 = $iteration_count_log2;
  38. $this->portable_hashes = $portable_hashes;
  39. $this->random_state = microtime();
  40. if (function_exists('getmypid'))
  41. $this->random_state .= getmypid();
  42. }
  43. function get_random_bytes($count)
  44. {
  45. $output = '';
  46. if (is_readable('/dev/urandom') &&
  47. ($fh = @fopen('/dev/urandom', 'rb'))) {
  48. $output = fread($fh, $count);
  49. fclose($fh);
  50. }
  51. if (strlen($output) < $count) {
  52. $output = '';
  53. for ($i = 0; $i < $count; $i += 16) {
  54. $this->random_state =
  55. md5(microtime() . $this->random_state);
  56. $output .=
  57. pack('H*', md5($this->random_state));
  58. }
  59. $output = substr($output, 0, $count);
  60. }
  61. return $output;
  62. }
  63. function encode64($input, $count)
  64. {
  65. $output = '';
  66. $i = 0;
  67. do {
  68. $value = ord($input[$i++]);
  69. $output .= $this->itoa64[$value & 0x3f];
  70. if ($i < $count)
  71. $value |= ord($input[$i]) << 8;
  72. $output .= $this->itoa64[($value >> 6) & 0x3f];
  73. if ($i++ >= $count)
  74. break;
  75. if ($i < $count)
  76. $value |= ord($input[$i]) << 16;
  77. $output .= $this->itoa64[($value >> 12) & 0x3f];
  78. if ($i++ >= $count)
  79. break;
  80. $output .= $this->itoa64[($value >> 18) & 0x3f];
  81. } while ($i < $count);
  82. return $output;
  83. }
  84. function gensalt_private($input)
  85. {
  86. $output = '$P$';
  87. $output .= $this->itoa64[min($this->iteration_count_log2 +
  88. ((PHP_VERSION >= '5') ? 5 : 3), 30)];
  89. $output .= $this->encode64($input, 6);
  90. return $output;
  91. }
  92. function crypt_private($password, $setting)
  93. {
  94. $output = '*0';
  95. if (substr($setting, 0, 2) == $output)
  96. $output = '*1';
  97. $id = substr($setting, 0, 3);
  98. # We use "$P$", phpBB3 uses "$H$" for the same thing
  99. if ($id != '$P$' && $id != '$H$')
  100. return $output;
  101. $count_log2 = strpos($this->itoa64, $setting[3]);
  102. if ($count_log2 < 7 || $count_log2 > 30)
  103. return $output;
  104. $count = 1 << $count_log2;
  105. $salt = substr($setting, 4, 8);
  106. if (strlen($salt) != 8)
  107. return $output;
  108. # We're kind of forced to use MD5 here since it's the only
  109. # cryptographic primitive available in all versions of PHP
  110. # currently in use. To implement our own low-level crypto
  111. # in PHP would result in much worse performance and
  112. # consequently in lower iteration counts and hashes that are
  113. # quicker to crack (by non-PHP code).
  114. if (PHP_VERSION >= '5') {
  115. $hash = md5($salt . $password, TRUE);
  116. do {
  117. $hash = md5($hash . $password, TRUE);
  118. } while (--$count);
  119. } else {
  120. $hash = pack('H*', md5($salt . $password));
  121. do {
  122. $hash = pack('H*', md5($hash . $password));
  123. } while (--$count);
  124. }
  125. $output = substr($setting, 0, 12);
  126. $output .= $this->encode64($hash, 16);
  127. return $output;
  128. }
  129. function gensalt_extended($input)
  130. {
  131. $count_log2 = min($this->iteration_count_log2 + 8, 24);
  132. # This should be odd to not reveal weak DES keys, and the
  133. # maximum valid value is (2**24 - 1) which is odd anyway.
  134. $count = (1 << $count_log2) - 1;
  135. $output = '_';
  136. $output .= $this->itoa64[$count & 0x3f];
  137. $output .= $this->itoa64[($count >> 6) & 0x3f];
  138. $output .= $this->itoa64[($count >> 12) & 0x3f];
  139. $output .= $this->itoa64[($count >> 18) & 0x3f];
  140. $output .= $this->encode64($input, 3);
  141. return $output;
  142. }
  143. function gensalt_blowfish($input)
  144. {
  145. # This one needs to use a different order of characters and a
  146. # different encoding scheme from the one in encode64() above.
  147. # We care because the last character in our encoded string will
  148. # only represent 2 bits. While two known implementations of
  149. # bcrypt will happily accept and correct a salt string which
  150. # has the 4 unused bits set to non-zero, we do not want to take
  151. # chances and we also do not want to waste an additional byte
  152. # of entropy.
  153. $itoa64 = './ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
  154. $output = '$2a$';
  155. $output .= chr(ord('0') + $this->iteration_count_log2 / 10);
  156. $output .= chr(ord('0') + $this->iteration_count_log2 % 10);
  157. $output .= '$';
  158. $i = 0;
  159. do {
  160. $c1 = ord($input[$i++]);
  161. $output .= $itoa64[$c1 >> 2];
  162. $c1 = ($c1 & 0x03) << 4;
  163. if ($i >= 16) {
  164. $output .= $itoa64[$c1];
  165. break;
  166. }
  167. $c2 = ord($input[$i++]);
  168. $c1 |= $c2 >> 4;
  169. $output .= $itoa64[$c1];
  170. $c1 = ($c2 & 0x0f) << 2;
  171. $c2 = ord($input[$i++]);
  172. $c1 |= $c2 >> 6;
  173. $output .= $itoa64[$c1];
  174. $output .= $itoa64[$c2 & 0x3f];
  175. } while (1);
  176. return $output;
  177. }
  178. function HashPassword($password)
  179. {
  180. $random = '';
  181. if (CRYPT_BLOWFISH == 1 && !$this->portable_hashes) {
  182. $random = $this->get_random_bytes(16);
  183. $hash =
  184. crypt($password, $this->gensalt_blowfish($random));
  185. if (strlen($hash) == 60)
  186. return $hash;
  187. }
  188. if (CRYPT_EXT_DES == 1 && !$this->portable_hashes) {
  189. if (strlen($random) < 3)
  190. $random = $this->get_random_bytes(3);
  191. $hash =
  192. crypt($password, $this->gensalt_extended($random));
  193. if (strlen($hash) == 20)
  194. return $hash;
  195. }
  196. if (strlen($random) < 6)
  197. $random = $this->get_random_bytes(6);
  198. $hash =
  199. $this->crypt_private($password,
  200. $this->gensalt_private($random));
  201. if (strlen($hash) == 34)
  202. return $hash;
  203. # Returning '*' on error is safe here, but would _not_ be safe
  204. # in a crypt(3)-like function used _both_ for generating new
  205. # hashes and for validating passwords against existing hashes.
  206. return '*';
  207. }
  208. function CheckPassword($password, $stored_hash)
  209. {
  210. $hash = $this->crypt_private($password, $stored_hash);
  211. if ($hash[0] == '*')
  212. $hash = crypt($password, $stored_hash);
  213. return $hash == $stored_hash;
  214. }
  215. }
  216. ?>