Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am doing file uploading job.I want to generate SHA256 and CRC32 hash.Can anyone help me how shall I generate those hash.I want to get it working for ios.

share|improve this question
1  
Did you try googling it? – Dani Feb 25 '12 at 13:08
@Dani yes I did. – NSCry Feb 25 '12 at 16:01

2 Answers

up vote 7 down vote accepted

SHA256 is available in CommonCrypto. CRC32 is not a hash, it a Cyclic Redundancy Check.

Example code:

#import <CommonCrypto/CommonDigest.h>

NSData *dataIn = [@"Now is the time for all good computers to come to the aid of their masters." dataUsingEncoding:NSASCIIStringEncoding];
NSMutableData *macOut = [NSMutableData dataWithLength:CC_SHA256_DIGEST_LENGTH];

CC_SHA256(dataIn.bytes, dataIn.length,  macOut.mutableBytes);

NSLog(@"dataIn: %@", dataIn);
NSLog(@"macOut: %@", macOut);

NSLog output:
dataIn: <4e6f7720 69732074 68652074 696d6520 666f7220 616c6c20 676f6f64 20636f6d 70757465 72732074 6f20636f 6d652074 6f207468 65206169 64206f66 20746865 6972206d 61737465 72732e>

macOut: <53f89cf6 7ebfbe56 89f1f76a 3843dfd1 09d68c5b a938dcd2 9a12004e 108260cb>

share|improve this answer
ok.But I want to get CRC32 value of any data.Are there any way to get it in ios? – NSCry Feb 25 '12 at 15:50
I want to work it for ios.In ios I am not finding <CommonCrypto/CommonDigest.h> in securty framework – NSCry Feb 25 '12 at 15:55
Yeah, Apple is moving to transforms but I just tested this with the iOS 5.0 SDK. As for crc32, it is available in several libraries such as zlib. – Zaph Feb 25 '12 at 17:16
Your SHA256 is working for me.I have another question I am generating hash from image data(NSData).Are there any calculator/website where I can check it? – NSCry Feb 26 '12 at 12:33
I checked it online sha256 generator the hash code is not matching.Any solutions? – NSCry Feb 29 '12 at 13:27
show 7 more comments

there are no apps which can generate Hash for ios

This should work....its for Mac

http://itunes.apple.com/us/app/digiprint/id473233587?mt=12

share|improve this answer
1  
Nice attempt to be helpful Yagnesh, but I think the original poster is asking for how to generate SHA256 & CRC32 numbers programmatically for his own program that does uploading. – Michael Dautermann Feb 25 '12 at 13:22
@MichaelDautermann yes u are right. do u have any suggestions?? – NSCry Feb 25 '12 at 15:52
@MichaelDautermann I implemented CC_SHA256(dataIn.bytes, dataIn.length, macOut.mutableBytes); and getting the hash sha256 data but it is not matching with online hash generator any suggestions – NSCry Feb 29 '12 at 13:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.