Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to generate HMAC-SHA1 of NSString type variable. I see the post but this method give me error in CCHmac(kCCHmacAlgSHA256, cKey, strlen(cKey), cData, strlen(cData), cHMAC);

and

NSString *hash = [HMAC base64Encoding]; line.

Please suggest how can I generate the HMAC-SHA1 of any string.

share|improve this question
What is the error? – Shaggy Frog Mar 26 '10 at 7:26
warning: implicit declaration of function 'CCHmac' error: 'kCCHmacAlgSHA256' undeclared (first use in this function) – Rupesh Mar 26 '10 at 7:38

2 Answers

up vote 3 down vote accepted

Have you got this at the top of your source file?

#import <CommonCrypto/CommonHMAC.h>

Regarding the base64 part of your question, this question will show you where to get a base64 encoding library/protocol.

share|improve this answer
Thanks frank, I only include #import <CommonCrypto/CommonDigest.h> . Now it works great. Now only one problem is pending NSString *hash = [HMAC base64Encoding]; This statement give warning warning: 'NSData' may not respond to '-base64Encoding' Please suggest – Rupesh Mar 26 '10 at 8:57

About the base64Encoding problem: This is because NSData does not contains this method by default, you need to extend NSData with that. In this link is explained http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html good luck!

share|improve this answer

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.