Is it safe to store a password using a secure hash followed by an insecure hash?

I’m working with some middleware that requires username/password authentication. The middleware uses MD5 hash for the password. The MD5 hash, of course, is not fit for the purpose of storing passwords. We need to address this.
We tried mod… Continue reading Is it safe to store a password using a secure hash followed by an insecure hash?