Md5 Password encryption, how?
Hi,
i wanna use md5 password encryption for my application, but don't knows how to handle it?
I have defined the bean for the passwordEncoder:
<!-- MD5 Encoder -->
<bean id="passwordEncoder" class="org.acegisecurity.providers.encoding.Md5Pas swordEncoder"></bean>
<!-- Authentifizierung -->
<bean id="loginAuthenticationProvider"
class="org.acegisecurity.providers.dao.DaoAuthenti cationProvider">
<property name="userDetailsService" ref="loginAuthService" />
<property name="passwordEncoder"><ref bean="passwordEncoder"/></property>
</bean>
But how did i use this password Encoder to make a md5 encryption?
Thanx
Tim