hash.php 822 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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)
  14. {
  15. return static::hasher()->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. * @return PasswordHash
  32. */
  33. private static function hasher()
  34. {
  35. require_once SYS_PATH.'vendor/phpass'.EXT;
  36. return new \PasswordHash(10, false);
  37. }
  38. }