MD5 is a one way hash.
Store then MD5 hash of the user name or password you are trying to protect and then compare then hash of the user entered data with the stored vale.
$storedpassword = md5($username); //on registration or whatever - store this in a text file or database.
//On a login attempt make a comparison like this
if (md5($username) == $storedpassword)
{
echo("Username validated!");
}
else
{
echo("Username login failed!");
}
While this isn't any thing I'd put in my resume I hope it gets the MD5 idea across.
More info is here .