I need to generate HMAC-SHA1 in Objective C. But i didnt find anything that works. I tried with CommonCrypto, using CCHMAC, but didnt works. I need to generate a hmac and after generate HOTP number.

Somebody have any example code in Objective C or C?

link|improve this question

0% accept rate
I don´t understand why you are using the base64Encoding, if all we want is to have a string of the generated hash. Can you explain, because, in the end we get a base64 encoded hmac-sha256, instead of a hmac-sha256... – bruno Oct 10 '11 at 18:17
@bruno in case you didn't notice, your answer has been deleted and made into a comment. If you have more to post, post it as new answer. – Shadow Wizard Oct 11 '11 at 9:37
feedback

5 Answers

Here's how you generate an HMAC using SHA-256:

NSString *key;
NSString *data;

const char *cKey  = [key cStringUsingEncoding:NSASCIIStringEncoding];
const char *cData = [data cStringUsingEncoding:NSASCIIStringEncoding];

unsigned char cHMAC[CC_SHA256_DIGEST_LENGTH];

CCHmac(kCCHmacAlgSHA256, cKey, strlen(cKey), cData, strlen(cData), cHMAC);

NSData *HMAC = [[NSData alloc] initWithBytes:cHMAC
                                      length:sizeof(cHMAC)];

NSString *hash = [HMAC base64Encoding];

I'm not aware of an HOTP library, but the algorithm was quite simple, if I recall correctly.

link|improve this answer
base64Encoding have in object c??I tried compile it, but i get an error this line. [HMAC base64Encoding]; – Helena Apr 16 '09 at 18:59
oohh...so thank u very muchhhh!!! – Helena Apr 16 '09 at 20:09
@Helena: oops, base64Encoding is from a custom NSData protocol. =) I'm glad the rest of the code worked, though. – Can Berk Güder Apr 16 '09 at 23:20
rsrsrs... si si... it worked!!!argh!!!rsrsrs... u speak spanish...hm – Helena Apr 17 '09 at 20:06
Thanks a ton.. :) – lostInTransit Jan 8 '10 at 13:53
feedback

This works without using custom protocols, using some code from http://cocoawithlove.com/2009/07/hashvalue-object-for-holding-md5-and.html

HashSHA256.h

#import <Foundation/Foundation.h>
#import <CommonCrypto/CommonDigest.h>

@interface HashSHA256 : NSObject {


}

 - (NSString *) hashedValue :(NSString *) key andData: (NSString *) data ; 

@end

HashSHA256.m

#import "HashSHA256.h"

#import <CommonCrypto/CommonHMAC.h>


@implementation HashSHA256


- (NSString *) hashedValue :(NSString *) key andData: (NSString *) data {


    const char *cKey  = [key cStringUsingEncoding:NSUTF8StringEncoding];
    const char *cData = [data cStringUsingEncoding:NSUTF8StringEncoding];
    unsigned char cHMAC[CC_SHA256_DIGEST_LENGTH];
    CCHmac(kCCHmacAlgSHA256, cKey, strlen(cKey), cData, strlen(cData), cHMAC);

    NSString *hash;

    NSMutableString* output = [NSMutableString   stringWithCapacity:CC_SHA256_DIGEST_LENGTH * 2];

    for(int i = 0; i < CC_SHA256_DIGEST_LENGTH; i++)
        [output appendFormat:@"%02x", cHMAC[i]];
    hash = output;
    return hash;

}

@end

Usage:

- (NSString *) encodePassword: (NSString *) myPassword {
    HashSHA256 * hashSHA256 = [[HashSHA256 alloc] init];   
    NSString * result = [hashSHA256 hashedValue:mySecretSalt andData:myPassword];       
    return result;       
}
link|improve this answer
You shouldn’t just use the string as a key. Instead you should derive it and make a proper key that is longer. PBKDF2 would be certainly a start. – Rafael May 21 at 8:06
feedback

Have you seen Jens Alfke's new MyCrypto classes?

He has some sample code on his blog.

link|improve this answer
soo thankk uu very much ford – Helena Apr 17 '09 at 20:00
feedback

I spend a whole day, trying to convert the generated hash (bytes) into readable data. I used the base64 encoded solution from the answer above and it didn´t work at all for me (b.t.w. you need and an external .h to be able to use the base64 encoding, which I had).

So what I did was this (which works perfectly without an external .h):

CCHmac(kCCHmacAlgSHA256, cKey, strlen(cKey), cData, strlen(cData), cHMAC);

// Now convert to NSData structure to make it usable again
NSData *out = [NSData dataWithBytes:cHMAC length:CC_SHA256_DIGEST_LENGTH];

// description converts to hex but puts <> around it and spaces every 4 bytes
NSString *hash = [out description];
hash = [hash stringByReplacingOccurrencesOfString:@" " withString:@""];
hash = [hash stringByReplacingOccurrencesOfString:@"<" withString:@""];
hash = [hash stringByReplacingOccurrencesOfString:@">" withString:@""];
// hash is now a string with just the 40char hash value in it
NSLog(@"%@",hash);
link|improve this answer
feedback

See http://oathtoken.googlecode.com/ for an iPhone app that does it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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