diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-06-15 10:04:10 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-09-14 13:50:56 +0200 |
commit | fbdbf41dc8378c16b37b9e6594107f00dc9a6241 (patch) | |
tree | dd37f1bc0195b96f687d4e2bb3e5cf53104a9000 /phpBB/includes/crypto/driver/salted_md5.php | |
parent | d66cae7cbcf9fb2d8105b1c62c3876dd3f4c0c14 (diff) | |
download | forums-fbdbf41dc8378c16b37b9e6594107f00dc9a6241.tar forums-fbdbf41dc8378c16b37b9e6594107f00dc9a6241.tar.gz forums-fbdbf41dc8378c16b37b9e6594107f00dc9a6241.tar.bz2 forums-fbdbf41dc8378c16b37b9e6594107f00dc9a6241.tar.xz forums-fbdbf41dc8378c16b37b9e6594107f00dc9a6241.zip |
[feature/passwords] Add helper functions, i.e. for combined hashes
Combined hashes can be used for i.e. converting already existing
password hashes to bcrypt. While this will not provide the same security
a pure bcrypt hash provides, it will still be significantly more secure
than a standard salted md5.
A combined hash will look as follows:
$H\2y${salted_for_H_prefix}${salt_+_settings_for_2y_prefix}${hash}
The prefixes are seperated by a backslash. Individual settings (which
can include either just the salt or a salt and possible additional settings)
are seperated by dollar signs. As backslashes and dollar signs are not
allowed in hashes or salts, they will be used for seperating the settings
from the salt.
Here is an example of a password hash:
$H\2a$9zv1uIaq1$10\1ff4640409fb96a449c1fO$/oN1O0cdUmFSMZT3UZKrgAyalhnt1LC
The 'H' prefix stands for the salted md5 implementation of phpBB 3.0.
Its settings will be parsed as 9zv1uIaq1 resulting in a hash for the check
as follows:
$H$9zv1uIaq1{hash}
Since the password is used for hashing, the {hash} can be left blank and
will basically be filled by the hashing algorithm. The {hash} will then be
used as password for the next hashing algorithm. In this case that would be
the bcrypt algorithm. The settings are set to 10\1ff4640409fb96a449c1fO which
will be transformed to 10$1ff4640409fb96a449c1fO resulting in a hash like
this for the bcrypt hashing function:
$2a$10$1ff4640409fb96a449c1fO{hash}
The {hash} will again be basically filled by the hashing algorithm.
Afterwards, the {hash} will be extracted from the returned hash and put at
the end of the already known hash settings:
$H\2a$9zv1uIaq1$10\1ff4640409fb96a449c1fO$
If the password is correct, the combined hash will of course be the same
as the stored one.
PHPBB3-11610
Diffstat (limited to 'phpBB/includes/crypto/driver/salted_md5.php')
0 files changed, 0 insertions, 0 deletions