- (NSString *)md5:(NSString *)str
{
const char *cStr = [str UTF8String];
unsigned char result[16];
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], result[5], result[6], result[7],
result[8], result[9], result[10], result[11],
result[12], result[13], result[14], result[15]
];
}
9***@qq.com
- 发布:2024-07-25 10:45
- 更新:2024-07-25 11:25
- 阅读:134
2 个回复
1***@qq.com
方便留个联系方式详细给咱处理
DCloud_iOS_LZY
char 类型是iOS原生类型,从Foundation中导入后可以在uts中直接使用
9***@qq.com (作者)
谢谢官方。
2024-07-30 22:09