SECURITY WARNING !!!!! |
7/13/2010 11:37:37 PM |
PHPRunner General questions | |
![]() For those who use this method to encrypt any field: $values["YourField"] = md5($values["YourField"]);
|
|
A
|
ann 7/14/2010 |
Hi, |
![]() |
romaldus author 7/14/2010 |
Hi, you've easily decrypted the word since there is a correspondence table between words and hashes in the decryption algorithm. To avoid this we recommend to use a sequence of letters and numbers as password. We plan to add a salt for the passwords before hashing them in the next version. More information is here: http://en.wikipedia.org/wiki/Salt_(cryptography)
|
![]() |
Sergey Kornilov admin 7/14/2010 |
These 'decryptors' use previously calculated md5 databases. This means applying md5 encoding to a dictionary word is not safe. |