I am converting from acegi 1.0.6 to SS2, and have a question about specifying the SHA hashing strength.
Am I still required to define a ShaPasswordEncoder and pass in the strength (in this case, 256) as a constructor-arg?
This is what I have right now:
Help would be appreciated.HTML Code:<security:authentication-provider> <security:jdbc-user-service data-source-ref="dataSource" authorities-by-username-query="select ACCT.login, AUTH.AUTHORITY_NAME FROM T_ACCOUNT ACCT, T_AUTHORITY AUTH WHERE ACCT.login=?" users-by-username-query="select login, hashedpassword as password, enabled from T_ACCOUNT where login = ?"/> <security:password-encoder hash="sha"> <security:salt-source user-property="login" /> </security:password-encoder> </security:authentication-provider>
Jason



