diff options
author | Kevin Chabowski <kevin@kch42.de> | 2011-08-25 00:03:31 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2011-08-25 00:03:31 +0200 |
commit | 04241a5ccbf839dee953d7e47c894d5c8141f7ee (patch) | |
tree | af6160508689ad4536667bfe0a58af200c45c818 /ratatoeskr/sys/models.php | |
parent | 958e9e467736690a46ae9129db43f8428fc3f04c (diff) | |
download | ratatoeskr-cms-04241a5ccbf839dee953d7e47c894d5c8141f7ee.tar.gz ratatoeskr-cms-04241a5ccbf839dee953d7e47c894d5c8141f7ee.tar.bz2 ratatoeskr-cms-04241a5ccbf839dee953d7e47c894d5c8141f7ee.zip |
Added a fairly secure password hashing method.
Diffstat (limited to 'ratatoeskr/sys/models.php')
-rw-r--r-- | ratatoeskr/sys/models.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ratatoeskr/sys/models.php b/ratatoeskr/sys/models.php index 4448266..cd327e1 100644 --- a/ratatoeskr/sys/models.php +++ b/ratatoeskr/sys/models.php @@ -48,9 +48,9 @@ class User /* * Variables: Public class properties * - * $username - The username - * $pwhash - SHA1-Hash of the password - * $mail - E-Mail-address + * $username - The username. + * $pwhash - <PasswordHash> of the password. + * $mail - E-Mail-address. * $fullname - The full name of the user. * $language - Users language */ |