Questions tagged «sha1»

SHA-1是由美国政府设计为联邦信息处理标准的加密哈希函数。最近,已检测到冲突,这意味着SHA1变得更容易受到攻击,因此不建议将其用于保护数据。

9
如何在Android中将SHA1哈希为字符串?
在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相同的结果。谁能指出我正确的方向?
72 android  hash  sha1 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.