I have a table which stores user login infomration, which contains passwords in the below scheme:
- {crypt}hashedpassword
- {ssha}hashedpasswordsalted
- {md5}hashedpassword
- .....
Is there a Perl module that understands this scheme and is able to validate the password given the plain text password?
Something like
print "success!!\n" if validatePassword("helloworld",{CRYPT}r2sKInajXZ6Fk)