hash.php 698 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. $this->value = sha1($value.$this->salt = (is_null($salt)) ? Str::random(16) : $salt);
  25. }
  26. /**
  27. * Factory for creating hash instances.
  28. *
  29. * @access public
  30. * @param string $value
  31. * @param string $salt
  32. * @return Hash
  33. */
  34. public static function make($value, $salt = null)
  35. {
  36. return new self($value, $salt);
  37. }
  38. }