Search Results

1
vote
3answers
605 views

How do I convert NSString with Hexvalue to binary char* ?

I have a long hex value stored as a NSString, something like: c12761787e93534f6c443be73be31312cbe343816c062a278f3818cb8363c701 How do I convert it back into a binary value stored as …
0
votes

How do I convert NSString with Hexvalue to binary char* ?

static NSString* hexval(NSData *data) { NSMutableString *hex = [NSMutableString string]; unsigned char *bytes = (unsigned char *)[data bytes]; char temp[3]; int i = 0; f …