estoy tratando de crear una cadena de hash MD5 androide para igualar el código C# abajo:Android: ¿Cómo crear la cadena HMAC MD5?
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);
}
código de Android que utilizan actualmente [ no generar el mismo código C#]:
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;
}
Gracias de antemano.
revisa el código de Android. – Basbous
posible duplicado de [¿Cómo generar HMAC MD5 en Android?] (Http://stackoverflow.com/questions/3140650/how-to-generate-hmac-md5-in-android) – Thilo
@Thilo: Revisé el enlace que siempre que sea yo, la solución no está funcionando. –