crypt(text,"k7")
I looked it up and apparently 'k7' is the salt, but I have no idea what that means nor what type of output will come from that, anyone know?
|
|
|||||
|
|
|
From the crypt Man page.
|
||||||
|
|
|
All the other answers are correct, but so far no one has explained why the salt is there. Wikipedia has a good page on salts and Rainbow Tables, which are the main reason why we have salts. Without salt, crypt is basically just a one-way hashing function. If would take in a password and return a hashed version of that password. Rainbow tables provide an optimized method for defeating the "one-way" nature of this hash, and backing out the original password. If you manage to get the hashed passwords ( via some database exploit, or access to the /etc/passwd or /etc/shadow file ), you could theoretically know a lot of people's passwords. A salt adds an extra "random" factor to the mix. You need to create a random salt and store that somewhere ( with the password is ok, but separate is better ). Now one set of rainbow tables isn't enough, you suddenly need 65,536 sets of such tables ( in the case of a two-byte salt ). The salt could also be kept separate from the password, adding an extra hurdle. Salts also help prevent users with the same passwords looking like the have the same password; the salt is usually randomly selected, and if the salts are different then the hashed passwords will be dramatically different. I'll also point out this blog entry explaining some password basics, which I found very informative. |
|||
|
|
|
|
|
||
|
|
|
|
As Randolpho points out, it's a one-way hashing process for text. The standard use for crypt() is in storing passwords. Obviously, storing the password as plaintext would be very ill advised. Instead, crypt() is used to generate a hash of the password. When you type in your password, crypt() is applied to that, and then the two hashes are compared. Essentially, the function of crypt() is to translate the text into some new text, from which the original can never be recovered, but which has a low probability of generating the same hash for two different keys. |
|||
|
|
|
|
Wikipedia FTW Bottom line: it one-way hashes |
||
|
|