PIA
PIA

Reputation: 1

How to decrypt hash password using C#?

I have a old database where password is in Hashed format,i need to decrypt hashed password.Is there any method in membership to decrypt hash password.

Upvotes: 0

Views: 310

Answers (1)

Jim Jeffries
Jim Jeffries

Reputation: 10081

The hash is probably designed to be one way. If you know the hashing algorithm used you could use brute force, but otherwise no, there is no way to "decrypt" the password.

Upvotes: 1

Related Questions