hash.php 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 salted hash instance.
  17. *
  18. * If no salt is provided, a random, 16 character salt will be generated
  19. * to created the salted, hashed value. If a salt is provided, that salt
  20. * will be used when hashing the value.
  21. *
  22. * @param string $value
  23. * @param string $salt
  24. * @return void
  25. */
  26. public function __construct($value, $salt = null)
  27. {
  28. $this->salt = (is_null($salt)) ? Str::random(16) : $salt;
  29. $this->value = sha1($value.$this->salt);
  30. }
  31. /**
  32. * Factory for creating hash instances.
  33. *
  34. * @access public
  35. * @param string $value
  36. * @param string $salt
  37. * @return Hash
  38. */
  39. public static function make($value, $salt = null)
  40. {
  41. return new self($value, $salt);
  42. }
  43. }