Using PBKDF2 in combination with AES-KW defeats usage of BCrypt password hashes?
We are currently implementing envelope encryption for our app. That means, we need to derive a key from a user’s password, which then will be used as a key encryption key(KEK) to wrap another key using the AES-KW algorithm. Basically, on o…