好吧,我哈希一個圖像。正如你所知道的,哈希圖像需要FOREVER。所以我拍攝了100個圖像樣本,均勻分佈。這是代碼。從const void轉換爲char?
#define NUM_HASH_SAMPLES 100
@implementation UIImage(Powow)
-(NSString *)md5Hash
{
NSData *data = UIImagePNGRepresentation(self);
char *bytes = (char*)malloc(NUM_HASH_SAMPLES*sizeof(char));
for(int i = 0; i < NUM_HASH_SAMPLES; i++)
{
int index = i*data.length/NUM_HASH_SAMPLES;
bytes[i] = (char)(data.bytes[index]); //Operand of type 'const void' where arithmetic or pointer type is required
}
unsigned char result[CC_MD5_DIGEST_LENGTH];
CC_MD5(bytes, NUM_HASH_SAMPLES, result);
return [NSString stringWithFormat:
@"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
result[0], result[1], result[2], result[3],
result[4], result[5], result[6], result[7],
result[8], result[9], result[10], result[11],
result[12], result[13], result[14], result[15]
];
}
錯誤發生在註釋行上。
我在做什麼錯?
謝謝!但是,我發現做bytes [i] =&data.bytes [index]的時候有點乾淨。我的計算機科學教授告訴我,施放malloc是個好習慣。去搞清楚。 – rweichler
@rweichler他錯了。此外,代碼看起來不正確... – 2013-08-28 12:03:35