Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I accidentally stopped hashing passwords before they were stored, so now my database has a mix of MD5 Passwords and unhashed passwords.

I want to loop through and hash the ones that are not MD5. Is it possible to check if a string is an MD5 hash?

share|improve this question
NullPointer's response is your best shot, but still, you can't be sure unless you're already allowing users to save a password that can be 32 characters long. – inhan Jan 13 at 4:43
2  
Off topic, but MD5 is considered "broken" for storing passwords due to the ease at which you can calculate all possible keys. Have a look at: stackoverflow.com/questions/4795385/… and stackoverflow.com/questions/1581610/… and openwall.com/phpass – tsujp Jan 13 at 4:50

1 Answer

up vote 11 down vote accepted

you can check by

function isValidMd5($md5)
{
    return !empty($md5) && preg_match('/^[a-f0-9]{32}$/', $md5);
}

or like (better approach)

<?php

function isValidMd5($md5 ='')
{
    return   preg_match('/^[a-f0-9]{32}$/', $md5);
}

echo isValidMd5('5d41402abc4b2a76b9719d911017c592');
share|improve this answer
1  
The !empty check is entirely superfluous there. – deceze Jan 13 at 4:39
3  
Why do you need to check if it's empty? Won't it already return false if preg_match() does not match? – inhan Jan 13 at 4:39
What's the accuracy on this? Can I trust it completely? Sorry don't know too much about regular expressions. – hellohellosharp Jan 13 at 4:41
It will return 0 if it doesn't match, synonymous with false. +vote @inhan – tsujp Jan 13 at 4:42
1  
@hellohellosharp yeah, documentation reads Returns the hash as a 32-character hexadecimal number. which means the value should consist of 0-9 and a-f characters only and it should be 32 characters long. – inhan Jan 13 at 4:44
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.