However nowadays only password_hash is recommended and nothing else, but i need a list of common password methods that are still in use. md5, sha1 and what else?
The only password method that has ever been created is password_hash.
md5, sha1 etc are for checking the integrity of documents to ensure that they are unchanged from when the hash was created as any change will result in a completely different hash. Any use of a hash for purposes other than file integrity is making use of it for a purpose other than what it was intended for.
A lot of people also misuse the plain text method for storing passwords (or possibly rot13).
I know. But these hash functions are still used for password. I need to know the answer of my original post for stats/research purposes.
There wouldn’t be any way of knowing what is being used except in some of the cases where the password security is breached. Anywhere using a secure variant or an incecure one that no one had attacked yet would not provide any means for telling what was being used.
Sorry if I’m missing something, but wasn’t this adequately covered in your other threads?
mcrypt
password_needs_rehash
regexp for password_hash
What is it specifically you’re still struggling with?