im using this code to encrypt my password......
private static final String md5(final String password) {
    try {
        MessageDigest digest = java.security.MessageDigest
                .getInstance("MD5");
        digest.update(password.getBytes());
        byte messageDigest[] = digest.digest();
        StringBuffer hexString = new StringBuffer();
        for (int i = 0; i < messageDigest.length; i++) {
            String h = Integer.toHexString(0xFF & messageDigest[i]);
            while (h.length() < 2)
                h = "0" + h;
            hexString.append(h);
        }
        return hexString.toString();
    } catch (NoSuchAlgorithmException e) {
        e.printStackTrace();
    }
    return "";
}
how can i add a (Secretkey) so i can send the value to a .net
 
     
     
    