I am trying to create an android MD5 hash string to equal the C# code bellow:
private string CalculateHMACMd5(string message, string key)
{
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
byte[] keyByte = encoding.GetBytes(key);
HMACMD5 hmacmd5 = new HMACMD5(keyByte);
byte[] messageBytes = encoding.GetBytes(message);
byte[] hashmessage = hmacmd5.ComputeHash(messageBytes);
string HMACMd5Value = ByteToString(hashmessage);
return HMACMd5Value;
}
private static string ByteToString(byte[] buff)
{
string sbinary = "";
for (int i = 0; i < buff.Length; i++)
{
sbinary += buff[i].ToString("X2");
}
return (sbinary);
}
public static String sStringToHMACMD5(String sData, String sKey)
{
SecretKeySpec key;
byte[] bytes;
String sEncodedString = null;
try
{
key = new SecretKeySpec((sKey).getBytes(), "ASCII");
Mac mac = Mac.getInstance("HMACMD5");
mac.init(key);
mac.update(sData.getBytes());
bytes = mac.doFinal(sData.getBytes());
StringBuffer hash = new StringBuffer();
for (int i=0; i<bytes.length; i++) {
String hex = Integer.toHexString(0xFF & bytes[i]);
if (hex.length() == 1) {
hash.append('0');
}
hash.append(hex);
}
sEncodedString = hash.
return sEncodedString;
}
Thanks in advance.
public static String sStringToHMACMD5(String s, String keyString)
{
String sEncodedString = null;
try
{
SecretKeySpec key = new SecretKeySpec((keyString).getBytes("UTF-8"), "HmacMD5");
Mac mac = Mac.getInstance("HmacMD5");
mac.init(key);
byte[] bytes = mac.doFinal(s.getBytes("ASCII"));
StringBuffer hash = new StringBuffer();
for (int i=0; i<bytes.length; i++) {
String hex = Integer.toHexString(0xFF & bytes[i]);
if (hex.length() == 1) {
hash.append('0');
}
hash.append(hex);
}
sEncodedString = hash.toString();
}
catch (UnsupportedEncodingException e) {}
catch(InvalidKeyException e){}
catch (NoSuchAlgorithmException e) {}
return sEncodedString ;
}
Define 'not working'. Exception? Output not as expected?, etc.
One obvious thing is that you are processing the same data twice:
mac.update(sData.getBytes());
bytes = mac.doFinal(sData.getBytes());
To process all data in one pass, just use doFinal()
(assuming it's not too big).
Another thing that can be wrong is the format of the key: what is the format of String sKey
. Ideally you should be using a BASE64 encoded string, not calls to getString()
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With