Possible Duplicate:
Sha256 in Objective-C for iPhone
Greetings,
I'm having terrible trouble generating a SHA256 string in Objective C (probably because I'm so new to the language).
In jQuery, all I have to do is this:
var sha256String=$.sha256("Hello");
which produces the hash as expected.
But in Objective-C, I've tried the following to no avail:
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];
Is there some function that I can call such as:
NSString *sha256String=[self getSHA256:pword];
This is what I'm trying to create and I'm finding it very difficult!
I hope someone can help.
Many thanks in advance,