I have a formula on how 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), 10000, 50, sha256.New)
return hex.EncodeToString(newPasswd), nil
}
How can I create a tool that reverses the hash if I know the the algorithm. What steps should I take into account. Thanks
http://dlvr.it/Sjbr6T
No comments:
Post a Comment