/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.govu.engine.module; import java.io.StringWriter; import org.apache.commons.codec.digest.DigestUtils; import org.mozilla.javascript.BaseFunction; import org.mozilla.javascript.Context; import org.mozilla.javascript.Scriptable; /** * * @author Mehmet Ecevit */ public class MD5 extends BaseFunction { public MD5() { } @Override public Object call(Context cx, Scriptable scope, Scriptable thisObj, Object[] args) { return DigestUtils.md5Hex(args[0].toString()); } }