使用MD5加密我的密码

时间:2014-02-26 12:58:28

标签: android encryption md5

即时使用此代码加密我的密码......

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 "";
}

我如何添加(密钥),以便我可以将值发送到.net

1 个答案:

答案 0 :(得分:0)

使用AES加密怎么样?

您可以在What are best practices for using AES encryption in Android?

找到使用它的示例