码迷,mamicode.com
首页 > 移动开发 > 详细

ios-网络篇md5加密

时间:2014-12-10 15:40:49      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   sp   for   on   

#import <Foundation/Foundation.h>
#import <CommonCrypto/CommonDigest.h>
@interface NSString (md5String)
- (NSString *)md5String;
@end
#import "NSString+md5String.h"

@implementation NSString (md5String)
- (NSString *)md5String
{
    const char *cStr = [self UTF8String];
    unsigned char result[CC_MD5_DIGEST_LENGTH];
    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]
             ] lowercaseString];
}
@end

 

ios-网络篇md5加密

标签:style   blog   io   ar   color   os   sp   for   on   

原文地址:http://www.cnblogs.com/liyang31tg/p/4155367.html

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