| 1 | <?php |
||
| 7 | class AuthenticateRequest implements Request |
||
| 8 | { |
||
| 9 | private $salt; |
||
| 10 | private $username; |
||
| 11 | private $password; |
||
| 12 | |||
| 13 | 17 | public function __construct($salt, $username, $password = null) |
|
| 19 | |||
| 20 | 17 | public function getType() |
|
| 24 | |||
| 25 | 17 | public function getBody() |
|
| 44 | |||
| 45 | 13 | private static function strxor($rhs, $lhs) |
|
| 55 | } |
||
| 56 |