Code: Select all
String encPwd = (String) event .getParameter(SFSEventParam.LOGIN_PASSWORD);
ISession session = (ISession) event.getParameter(SFSEventParam.SESSION);
encPwd = encPwd.toLowerCase();
String clearPwd = CryptoUtils.getClientPassword(session, encPwd);What is more, I suspect something is very awry, because if you look at the interface definition in Javadocs you'll see:
Code: Select all
public static String getClientPassword(ISession session, String clearPass)Am I wrong - or is this a bug?