PDA

View Full Version : Problems with md5 passwors



Alex Aldrete
12-11-2008, 05:32 PM
HI
i have a jdbc security enabled in postgresql, it works, but i want encode passwords with md5, someone have a how to?

Because a dont found , and i try, but jboss trow errors


THX ahd sorry for my english

wselwood
12-12-2008, 03:57 AM
Have a look in your pentaho-solutions\system\applicationContext-acegi-security-jdbc.xml

There should be a bean called passwordEncoder.

Set it to


<bean id="passwordEncoder" class="org.acegisecurity.providers.encoding.Md5PasswordEncoder" />
That should give you MD5 encoding.

Wil