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

MD5加密

时间:2014-12-15 19:03:53      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   for   on   bs   as   tt   nbsp   

#import <Foundation/Foundation.h> 

@interface MyMD5 : NSObject {

    

}

 

+(NSString *) md5: (NSString *) inPutText ;

@end

 

#import "MyMD5.h"

#import "CommonCrypto/CommonDigest.h"

 

@implementation MyMD5

 

+(NSString *) md5: (NSString *) inPutText 

{

    const char *cStr = [inPutText 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

 

MD5加密

标签:io   ar   sp   for   on   bs   as   tt   nbsp   

原文地址:http://www.cnblogs.com/zhangshan/p/4165443.html

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