在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上也需要同样的软件,但找不到如何做。我一直在寻找这样的例子:在Android上进行SHA1加密? 但这并不能为我带来与iPhone相同的结果。谁能指出我正确的方向?