Strength.php 704 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * The interface that all hash implementations must implement
  4. *
  5. * PHP version 5.3
  6. *
  7. * @category PHPSecurityLib
  8. * @package Hash
  9. * @author Anthony Ferrara <ircmaxell@ircmaxell.com>
  10. * @copyright 2011 The Authors
  11. * @license http://opensource.org/licenses/bsd-license.php New BSD License
  12. * @license http://www.gnu.org/licenses/lgpl-2.1.html LGPL v 2.1
  13. */
  14. namespace SecurityLibTest\Mocks;
  15. /**
  16. * The interface that all hash implementations must implement
  17. *
  18. * @category PHPSecurityLib
  19. * @package Hash
  20. * @author Anthony Ferrara <ircmaxell@ircmaxell.com>
  21. */
  22. class Strength extends \SecurityLib\Strength {
  23. const MEDIUMLOW = 4;
  24. const SUPERHIGH = 999;
  25. }