Tagged Questions

21
votes
13answers
27k views

What's the difference between SHA and MD5 (in PHP)?

When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?
5
votes
2answers
369 views

Recommended # of iterations when using PKBDF2-SHA256?

I'm curious if anyone has any advice or points of reference when it comes to determining how many iterations is 'good enough' when using PBKDF2 (specifically with SHA-256). Certainly, 'good enough' is ...
5
votes
7answers
4k views

How do I convert password hashing from MD5 to SHA?

I've got an old application that has user passwords stored in the database with an MD5 hash. I'd like to replace this with something in the SHA-2 family. I've thought of two possible ways to ...
4
votes
3answers
875 views

Can you get this same Java SHA-1 in PHP please?

I find myself in a need to change website platforms from Java to PHP but I'd like to keep all my user's passwords... I had this code do the password hashing prior to writting the hashed value as the ...
2
votes
2answers
63 views

SHA hashes same string into different blobs

I am using the following code to hash an incoming string, in expecting that same thing applied to the method multiple times will always get the same results. The scenario will be for password hashing ...
2
votes
1answer
42 views

Changing the hashing function on a pre-existing database

I'm doing a bit of reading on hashing for passwords. I've seen that SHA-256 > MD5. This got me thinking about how an app may deal with changing from one hashing function to another. What happens if ...
2
votes
3answers
164 views

Where is the SALT attached to the password, AFTER or BEFORE the password?

When you are using GNU/Linux, the password are (mainly) encripted in MD5 and SHA The operative system attaches a SALT to this password before encrypting it to avoid dictionary attacs. My question is, ...
2
votes
1answer
995 views

Using ruby to generate SHA512 crypt-style hashes formatted for /etc/shadow?

I want to generate SHA512 hashed passwords for inclusion directly into a /etc/shadow file for use with chef's user resource. Normally I'd go to the stdlib's Digest library for this, but it doesn't ...
1
vote
6answers
264 views

Check if string is a hash

I'm using SHA-512 to hash my passwords (with a salt ofcourse). I don't think that what I want is possible, but let's ask anyway. Is there a way to check if a string is a SHA-512 (or another ...
1
vote
3answers
200 views

What hash function should be used for passwords? [closed]

Possible Duplicate: What's the recommended hashing algorithm to use for stored passwords? Hello, I've recently been told that common hash functions such as SHA256 are insecure for use ...
1
vote
2answers
197 views

password storage in mysql for user content website

To store user passwords I am going to SHA 256 + salting. Just wanted to confirm if these are correct. Business requirement is password should be minimum 8 inputs and maximum 32 inputs. (any input is ...
0
votes
3answers
32 views

How many characters should I reserve in my database for storing SHA512 hash?

Column: pwdhash Type: char Many web pages give me the bit size, not a character size. Should I use a binary field instead?