> Can somebody help me in figuring out what do I need to do to configure MD5
> encoding of password for CAS

You want org.jasig.cas.authentication.handler.DefaultPasswordEncoder,
which takes the name of a JCE message digest name, e.g. MD5, in its
constructor to indicate the type of digest.  See
http://java.sun.com/j2se/1.5.0/docs/guide/security/jce/JCERefGuide.html#AppA
for the authoritative list of JCE algorithm names, including message
digests/HMACs.  Following should work for your case:

<bean class="org.jasig.cas.authentication.handler.DefaultPasswordEncoder">
  <constructor-arg index="0" value="MD5" />
</bean>

M

-- 
You are currently subscribed to cas-dev@lists.jasig.org as: 
arch...@mail-archive.com
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-dev

Reply via email to