码迷,mamicode.com
首页 > 其他好文 > 详细

str 转 md5

时间:2017-08-23 11:53:10      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:result   cst   unsigned   cap   form   with   pre   bsp   capacity   

 

 

 1 @interface NSString (MD5)
 2 
 3 + (NSString *)md5To32bit:(NSString *)str;
 4 
 5 @end
 6 
 7 
 8 @implementation NSString (MD5)
 9 
10 + (NSString *)md5To32bit:(NSString *)str {
11     
12     const char *cStr = [str UTF8String];
13     unsigned char digest[CC_MD5_DIGEST_LENGTH];
14     CC_MD5( cStr, (CC_LONG)strlen(cStr),digest );
15     NSMutableString *result = [NSMutableString stringWithCapacity:CC_MD5_DIGEST_LENGTH * 2];
16     for(int i = 0; i < CC_MD5_DIGEST_LENGTH; i++)
17         [result appendFormat:@"%02x", digest[i]];
18     return result;
19 }
20 
21 @end

 

str 转 md5

标签:result   cst   unsigned   cap   form   with   pre   bsp   capacity   

原文地址:http://www.cnblogs.com/-yun/p/7417052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!