hash.php 884 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php namespace System;
  2. class Hash {
  3. /**
  4. * Hash a string using PHPass.
  5. *
  6. * PHPass provides reliable bcrypt hashing, and is used by many popular PHP
  7. * applications such as Wordpress and Joomla.
  8. *
  9. * @access public
  10. * @param string $value
  11. * @return string
  12. */
  13. public static function make($value, $rounds = 10)
  14. {
  15. return static::hasher($rounds)->HashPassword($value);
  16. }
  17. /**
  18. * Determine if an unhashed value matches a given hash.
  19. *
  20. * @param string $value
  21. * @param string $hash
  22. * @return bool
  23. */
  24. public static function check($value, $hash)
  25. {
  26. return static::hasher()->CheckPassword($value, $hash);
  27. }
  28. /**
  29. * Create a new PHPass instance.
  30. *
  31. * @param int $rounds
  32. * @return PasswordHash
  33. */
  34. private static function hasher($rounds = 10)
  35. {
  36. require_once SYS_PATH.'vendor/phpass'.EXT;
  37. return new \PasswordHash($rounds, false);
  38. }
  39. }