How can I brute-force a password hash if I know the formula? [closed]
I have a formula to create a password hash as written below.
// EncodePassword encodes a password using PBKDF2.
func EncodePassword(password string, salt string) (string, error) {
newPasswd := pbkdf2.Key([]byte(password), []byte(salt),… Continue reading How can I brute-force a password hash if I know the formula? [closed]