最佳答案
在 Objective C 中,我一直使用下面的代码来散列字符串:
-(NSString *) sha1:(NSString*)stringToHash {
const char *cStr = [stringToHash UTF8String];
unsigned char result[20];
CC_SHA1( cStr, strlen(cStr), result );
return [NSString stringWithFormat:@"%02X%02X%02X%02X%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],
result[16], result[17], result[18], result[19]
];
}
现在我需要同样的安卓,但不能找到如何做到这一点。我一直在寻找这方面的例子: 在 Android 上进行 SHA1加密? 但是这并不能给我带来和 iPhone 一样的结果。有人能给我指出正确的方向吗?