hash.php 1.1 KB

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. // Get a random salt to hash the value with.
  26. // --------------------------------------------------------------
  27. $this->salt = (is_null($salt)) ? Str::random(16) : $salt;
  28. // --------------------------------------------------------------
  29. // Perform a salted, SHA-1 hash on the value.
  30. // --------------------------------------------------------------
  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. }