You do not need to decrypt it. You cannot convert a hash to plain text, its one-way function. So basically you enter the input password and compare the two hashes:
Eg (pseudo code):- if hash(password entered by user) == password stored in databse Then //logged in successfully else //login failed end if
source share