在苹果Apple/iOS中的MD5加密方法,输出后为大写字母。这种方法产生的加密结果与C#等语言产生的结果是一致的。#import <commoncrypto CommonDigest.h>;- (NSString*)MD5:(NSString*)str{const char *cStr = [str UTF8String];unsigned char result[32];CC_MD5(cStr, strlen(cStr), result);return [NSString stringWithFormat:@"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", result[0], result[1], result[2], result[3], result[4], re