2010/11/20 Altaf Mahmud <[email protected]> > Hi, > > I want to know how Koha saves its borrowers' password in database? Is it > one-way conversion? For example, if a password is saved as > '4QrcOUm6Wau+VuBX8g+IPg', can I decode it back to its original text which > was '123456'? >
They are stored as MD5 hashes and you cannot "decode" them as such. IIRCC, what you must do is make an MD5 hash of the password and then compare the two hashes. They should be the same. Kind Regards, Chris
_______________________________________________ Koha-devel mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
