zhangshan

#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

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-12-31
  • 2022-02-18
  • 2022-02-12
  • 2022-02-24
  • 2021-08-21
  • 2022-12-23
猜你喜欢
  • 2022-01-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-08
  • 2021-12-23
  • 2021-07-17
相关资源
相似解决方案