add methods to decrypt return data from router
[GitHub/Stricted/speedport-hybrid-php-api.git] / CryptLib / Password / Implementation / PHPBB.php
1 <?php
2 /**
3 * The PHPBB password hashing implementation
4 *
5 * Use this class to generate and validate PHPBB password hashes.
6 *
7 * PHP version 5.3
8 *
9 * @see http://www.openwall.com/phpass/
10 * @category PHPCryptLib
11 * @package Password
12 * @subpackage Implementation
13 * @author Anthony Ferrara <ircmaxell@ircmaxell.com>
14 * @copyright 2011 The Authors
15 * @license http://www.opensource.org/licenses/mit-license.html MIT License
16 * @version Build @@version@@
17 */
18
19 namespace CryptLib\Password\Implementation;
20
21 use CryptLib\Random\Factory as RandomFactory;
22
23 /**
24 * The PHPBB password hashing implementation
25 *
26 * Use this class to generate and validate PHPBB password hashes.
27 *
28 * @see http://www.openwall.com/phpass/
29 * @category PHPCryptLib
30 * @package Password
31 * @subpackage Implementation
32 * @author Anthony Ferrara <ircmaxell@ircmaxell.com>
33 */
34 class PHPBB extends PHPASS {
35
36 /**
37 * @var string The prefix for the generated hash
38 */
39 protected static $prefix = '$H$';
40
41 }