gpt4 book ai didi

iphone - 在 Objective C 中生成 SHA256 字符串

转载 作者:太空狗 更新时间:2023-10-30 03:20:52 30 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Sha256 in Objective-C for iPhone

问候,

我在 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];

这就是我想要创造的东西,我发现它非常困难!

我希望有人能提供帮助。

非常感谢,

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com