0

在我的 Android 应用程序中,我使用 MD5 哈希密钥来保证数据访问的安全性。我正在使用 Email+time+"postfix" 字符串来生成密钥。它运作良好。但问题是,当我使用至少有一个加号 ( +)a+b@gmail.com的电子邮件地址时,服务器返回“不正确的访问密钥”消息。我注意到它正在处理带有减号 ( -) 、下划线 ( _) 等符号的电子邮件地址,但它不适用于带有加号 ( +) 的电子邮件地址。我正在使用这种方法生成 MD5 哈希键:

public static String MD5_Hash(String s) {
    try {
        // Create MD5 Hash
        MessageDigest digest = java.security.MessageDigest
                .getInstance("MD5");
        digest.update(s.getBytes());
        byte messageDigest[] = digest.digest();

        // Create Hex String
        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 "";
}
4

1 回答 1

-1

我就是这样做的:-

public static String getMD5(String input) {

 byte[] source;
 try {
     source = input.getBytes("UTF-8");
 } catch (UnsupportedEncodingException e) {
     System.out.println("Error!");
 }

 String result = null;
 char hexDigits[] = {'0', '1', '2', '3', '4', '5', '6', '7',
         '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
 try {
     MessageDigest md = MessageDigest.getInstance("MD5");
     md.update(source);
     byte temp[] = md.digest();
     char str[] = new char[16 * 2];
     int k = 0;
     for (int i = 0; i < 16; i++) {
         byte byte0 = temp[i];
         str[k++] = hexDigits[byte0 >>> 4 & 0xf];
         str[k++] = hexDigits[byte0 & 0xf];
     }
     result = new String(str);
 } catch (Exception e) {
 System.out.println("Error!");
}
return result;
}
于 2012-07-24T10:36:46.207 回答