LOL. With MD5, it takes ages to convert back, so in a way - Jetgod is correct.
Converting a MD5 hash back into text takes quite some time. Then again, it all depends on the length of the hash code.
To be honest, I would use sha1 and MD5 together to make it securer.
Example:
Code:
$pass = md5(sha1(sha1(md5(sha1(trim($_POST['adminpassw']))))));
and then to make a generator, just do:
Code:
<?php
if(!$_POST["submit"]){
?>
<form method="POST">Password: <input type="password" name="pass"><br><br><input type="submit" name="submit" value="Generate Password"></form>
<?php
}else{
$pass = md5(sha1(sha1(md5(sha1(trim($_POST['pass']))))));
print $pass;
}
?>
Then feed the code into the file and done.
Good release - I'll check it out now.