MediaWiki REL1_31
InvalidPassword.php
Go to the documentation of this file.
1<?php
33 public function crypt( $plaintext ) {
34 }
35
36 public function toString() {
37 return '';
38 }
39
40 public function equals( $other ) {
41 return false;
42 }
43
44 public function needsUpdate() {
45 return false;
46 }
47}
Represents an invalid password hash.
equals( $other)
Compare one Password object to this object.
needsUpdate()
Determine if the hash needs to be updated.
crypt( $plaintext)
Hash a password and store the result in this object.
toString()
Convert this hash to a string that can be stored in the database.
Represents a password hash for use in authentication.
Definition Password.php:66