it has been a quite long that i have been encrypting password this way
sha1(md5(md5(sha1(md5(sha1(sha1(md5($pass))))))))
it's because it's real easy to decrypt md5 and sha1 simple hashes
infact i am inserting passwords on my database like this
mysql_real_escape_string(sha1(md5(md5(sha1(md5(sha1(sha1(md5($pass))))))))),
what do you guys think about this is it a better solution than md5($pass) || sha1($pass)
or i am completely idiot doing that
or are there better secure way for password encryption
pls give me some suggestion
thanks a lot