Having a list of hashes for the same password compromise the security of the password?

An attacker want’s access to a specific account, he doesn’t know the password.

It’s a high entropy password. +128bits
The attacker has the hash for the password (Assuming OWASP suggested bcrypt with cost 12)
The attacker has a list with n… Continue reading Having a list of hashes for the same password compromise the security of the password?

Is using SHA256 to create 256bit secret key from bcrypt good ok?

I am trying to Use AES to store passwords for a password manager. For authentication I am already using bcrypt. As AES uses 256 bit Key can I use SHA256 to generate 256 bit key from hashed value of bcrypt(Not talking about hash saved in Db… Continue reading Is using SHA256 to create 256bit secret key from bcrypt good ok?