Guest User

Untitled

a guest
Dec 11th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. unsigned char result[16];
  2. const char* data = [self.setname UTF8String];
  3. CC_MD5(data, strlen(data), result);
  4. NSString *hash = [NSString stringWithFormat:@"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
  5. result[0], result[1], result[2], result[3],
  6. result[4], result[5], result[6], result[7],
  7. result[8], result[9], result[10], result[11],
  8. result[12], result[13], result[14], result[15]];
  9.  
  10. NSString *ret = [NSString stringWithFormat:@"BIT-%@", hash];
Add Comment
Please, Sign In to add comment