hash.php 977 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php namespace System;
  2. class Hash {
  3. /**
  4. * The salty, hashed value.
  5. *
  6. * @var string
  7. */
  8. public $value;
  9. /**
  10. * The salt used during hashing.
  11. *
  12. * @var string
  13. */
  14. public $salt;
  15. /**
  16. * Create a new hash instance.
  17. *
  18. * @param string $value
  19. * @param string $salt
  20. * @return void
  21. */
  22. public function __construct($value, $salt = null)
  23. {
  24. // -------------------------------------------------------
  25. // If no salt is given, we'll create a random salt to
  26. // use when hashing the password.
  27. //
  28. // Otherwise, we will use the given salt.
  29. // -------------------------------------------------------
  30. $this->salt = (is_null($salt)) ? Str::random(16) : $salt;
  31. $this->value = sha1($value.$this->salt);
  32. }
  33. /**
  34. * Factory for creating hash instances.
  35. *
  36. * @access public
  37. * @param string $value
  38. * @param string $salt
  39. * @return Hash
  40. */
  41. public static function make($value, $salt = null)
  42. {
  43. return new self($value, $salt);
  44. }
  45. }