03-05-2019, 03:02 PM
There is a web-framework Yii, in which the password is hashed by the following algorithm:
In the wiki, I found that option 3800 is best for brute force.
However, the hash example contains only one salt: 2e45c4b99396c6cb2db8bda0d3df669f:1234
How do I use different salts?
If I write in the hash-file 'somekey:19xxd6xx7exx1dxx0dxxc4xxccxx02xx:admin@*****.com', then I get the error message 'Token length exception'.
Code:
md5( 'somekey' . $password . $email )
In the wiki, I found that option 3800 is best for brute force.
However, the hash example contains only one salt: 2e45c4b99396c6cb2db8bda0d3df669f:1234
How do I use different salts?
If I write in the hash-file 'somekey:19xxd6xx7exx1dxx0dxxc4xxccxx02xx:admin@*****.com', then I get the error message 'Token length exception'.