Re: [otrs] Frontend::Customer::Auth Digest::MD5

2010-01-13 Thread Sagy Volkov
Resolved it myself. For the record, I just needed that for customers, so I changed the actual MD5 crypt in Kernel/System/CustomerAuth/DB.pm and Kernel/System/CustomerUser/DB.pm (its just one line) from $CryptedPw = unix_md5_crypt( $Pw, $Login ); to $CryptedPw = md5_hex($Pw); (also added, use Diges

[otrs] Frontend::Customer::Auth Digest::MD5

2010-01-12 Thread Sagy Volkov
Hi, I need to get OTRS (2.4.5) to somehow change the method in Frontend::Customer::Auth to support another option, (not just plain,MD5, crypt) but also support Digest:: MD5, i.e. use Digest::MD5 qw(md5_hex); my testpass=md5_hex("password"); I know in terms of security its less secured, but becau