我有一个 NSData 值,我使用以下代码找到该值的字节
Byte *byteData = (Byte*)malloc(24); //byte array
int len=[result length]; //find the length
memcpy(byteData, [result bytes], len); // copy the bytes values of "result" to bytes array
NSString *MD5Key=[[NSString alloc]initWithFormat:@"%@",[result md5]]; // find md5 values
NSLog(@"%@",MD5Key);
NSString *finalKey=[MD5Key substringToIndex:8];
但我需要那个字节数组(byteData)的MD5值?我怎样才能做到这一点 ?