Is my authentication encryption any good? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T13:49:54Zhttp://stackoverflow.com/feeds/question/1023486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1023486/is-my-authentication-encryption-any-good1Is my authentication encryption any good?Tom2009-06-21T09:08:19Z2009-10-25T14:13:23Z
<p>So I've been reading a lot about encryption in PHP. So much that I am not sure exactly what's a really good method to securely store login information.</p>
<p>However, the following function is what I came up with:</p>
<pre><code>function loginHash($username, $password){
$salt = str_split($password,(strlen($password)/2)+1);
$hash = hash('whirlpool', $username.$salt[0].'centerSalt'.$salt[1]);
return $hash;
}
</code></pre>
<p>Am I doing it the right way? It's used for authenticating a password combined with a username, and the ability to compare the generated hash with the one stored in a database to verify a login.</p>
http://stackoverflow.com/questions/1023486/is-my-authentication-encryption-any-good/1023503#10235034Answer by Henri for Is my authentication encryption any good?Henri2009-06-21T09:17:47Z2009-10-25T14:13:23Z<p>My advise is to never, never, never write your own encryption and hash functions. Even experts do it wrong all the time, so dont try it yourself.</p>
<p>Ive heared that <a href="http://www.openwall.com/phpass/" rel="nofollow">phpass (Openwall)</a> is a nice hashing framework, i'd suggest you use that.</p>
<p>They use salts in their hashes and have quite some parameters to tweak the hash.</p>
http://stackoverflow.com/questions/1023486/is-my-authentication-encryption-any-good/1023506#10235061Answer by Webber for Is my authentication encryption any good?Webber2009-06-21T09:18:22Z2009-06-21T09:18:22Z<p>I think the above code checks the two boxes.</p>
<ul>
<li>Avoiding rainbow table attacks (via Salts)</li>
<li>Secure Login</li>
</ul>
http://stackoverflow.com/questions/1023486/is-my-authentication-encryption-any-good/1023509#10235094Answer by molf for Is my authentication encryption any good?molf2009-06-21T09:19:43Z2009-06-21T09:36:27Z<p>You're not actually using a salt.</p>
<p>Salt is a <em>randomly</em> generated string that is included in the input for your hash function. As such, it will be different every time.</p>
<p>The idea is that you generate a salt when a user stores a password, and that this salt is included in your data storage. When authenticating, you retrieve the salt and the stored hash, you prefix the given password with the stored salt, and hash the two together. Then compare the result with the stored hash.</p>
http://stackoverflow.com/questions/1023486/is-my-authentication-encryption-any-good/1023572#10235726Answer by Kaitsuli for Is my authentication encryption any good?Kaitsuli2009-06-21T10:05:18Z2009-06-21T10:05:18Z<p>Encrypting != Hashing. They both are generally accepted to be in the category of Cryptography, but when something can be encrypted, it can be decrypted, which is not the case in Hashing. Hashing is just hashing, and that's it.</p>
<p>The salt is indeed not properly constructed. It should be x-bytes read from /dev/urandom with a fopen() call. For example, 16 bytes of salt is what I personally use. This prevents rainbow table attacks effectively.</p>
<p>To make things more secure, use a secret key, too. For example:</p>
<pre><code>$hashedPassword = hash_hmac('whirlpool',$password.$salt,$key);
</code></pre>
<p>The $key is simply random data. You could generate a 64 kB file, for instance, that is called "key.bin" in a hidden folder above the document root and use file_get_contents() before the hash process.</p>
<p>Why to use secret keys? If you store the hashes and salts in a database and the key in the filesystem, then this prevents anyone from cracking your hash if they get their hands on your stored hashes and salts. So, an attacker would need to crack into both the database and the filesystem to crack your hashes, but notice that it's pointless for anyone to crack your hashes anymore if they have already cracked your whole application, which implies that your hashing scheme is good.</p>
http://stackoverflow.com/questions/1023486/is-my-authentication-encryption-any-good/1023664#10236641Answer by Schnalle for Is my authentication encryption any good?Schnalle2009-06-21T11:02:20Z2009-06-21T11:02:20Z<p>using salt solves two problems:</p>
<ol>
<li><p><strong>rainbow tables:</strong> rainbow tables are just precalculated hashes, stored with the source value. by comparing the hashes, you get the unhashed value (password). by adding salt you got another layer of complexity - the attacker must know the salt for generating a custom hashing table.</p></li>
<li><p><strong>difference of hashed values</strong>: without salt, the same 2 passwords generate the same 2 hashes. now it's easy to see if two users use the same password (the weak point here is about the same as with the rainbow tables, but still). that may not amount to much, but is still a point of concern.</p></li>
</ol>
<p>additionally, you shouldn't use fast algorithms for password hashing. md5 is fast, sha is fast. the slower, the better.</p>
<p>the <a href="http://www.matasano.com/log/" rel="nofollow">matsano chargen</a> blog is a good (and funny) resource for hints and pointers regarding security.</p>