问候,
我在 Objective C 中生成 SHA256 字符串时遇到了可怕的麻烦(可能是因为我对这门语言太陌生了)。
在 jQuery 中,我所要做的就是:
var sha256String=$.sha256("Hello");
它按预期产生哈希。
但是在Objective-C中,我尝试了以下方法无济于事:
NSString *pword=[[NSString alloc]
initWithString:login_pword.text];
unsigned char result[64];
CC_SHA256([pword UTF8String], [pword lengthOfBytesUsingEncoding:NSASCIIStringEncoding],result);
UIAlertView *msg=[[UIAlertView alloc] initWithTitle:@"Hi" message:result delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[msg show];
[msg release];
是否有一些我可以调用的函数,例如:
NSString *sha256String=[self getSHA256:pword];
这就是我想要创造的东西,我发现它非常困难!
我希望有人能帮帮忙。
提前谢谢了,