iPhone开发之MD5加密

引入头文件:

#import <CommonCrypto/CommonDigest.h>

加密算法:

  1. //TODO: md5 加密方法
  2. - (NSString*)md5Digest:(NSString *)str{
  3.     //32位MD5小写
  4.     const char *cStr = [str UTF8String]; 
  5.     unsigned char result[32]; 
  6.     
  7.     CC_MD5( cStr, strlen(cStr), result ); 
  8.     
  9.     return [NSString stringWithFormat: 
  10.             
  11.             @"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
  12.             
  13.             result[0], result[1], result[2], result[3], 
  14.             
  15.             result[4], result[5], result[6], result[7], 
  16.             
  17.             result[8], result[9], result[10], result[11], 
  18.             
  19.             result[12], result[13], result[14], result[15] 
  20.             
  21.             ]; 
  22. }
 

转自:http://www.1000phone.net/forum.php?mod=viewthread&tid=8822

你可能感兴趣的:(加密,算法,String,iPhone)