Changes from branches/4.0/src/wp-includes/class-phpass.php at r30467 to trunk/src/wp-includes/class-phpass.php at r26868
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-phpass.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-phpass.php
r30467 r26868 215 215 function HashPassword($password) 216 216 { 217 if ( strlen( $password ) > 4096 ) {218 return '*';219 }220 221 217 $random = ''; 222 218 … … 254 250 function CheckPassword($password, $stored_hash) 255 251 { 256 if ( strlen( $password ) > 4096 ) {257 return false;258 }259 260 252 $hash = $this->crypt_private($password, $stored_hash); 261 253 if ($hash[0] == '*')
Note: See TracChangeset
for help on using the changeset viewer.