zoukankan      html  css  js  c++  java
  • MD5加密工具

    .h档


    /**
     *  MD5加密工具
     */
    #import <Foundation/Foundation.h>
    
    @interface MD5Tools : NSObject
    /**
     *  MD5加密
     */
    +(NSString *)md5:(NSString *)value;
    
    /**
     *  密码MD5+手机号后4位 ,在作MD5加密
     */
    +(NSString *)md5Psd:(NSString *)password withPhoneNum:(NSString *)phoneNum;
    @end

    .m文件


    #import "MD5Tools.h"
    #import <CommonCrypto/CommonDigest.h>
    
    @implementation MD5Tools
    
    +(NSString *)md5:(NSString *)value
    {
    	const char *cStr = [value UTF8String];
        unsigned char result[16];
        CC_MD5( cStr, strlen(cStr), result ); // This is the md5 call
        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]
    			];
    }
    
    +(NSString *)md5Psd:(NSString *)password withPhoneNum:(NSString *)phoneNum
    {
        NSString *str = [NSString stringWithFormat:@"%@%@",[MD5Tools md5:password],[[phoneNum substringFromIndex:phoneNum.length-4]substringToIndex:4]];
        return [MD5Tools md5:str];
    }
    @end


    版权声明:本文博主原创文章,博客,未经同意不得转载。

  • 相关阅读:
    套题 codeforces 361
    hdu 5720
    套题 codeforces 360
    套题 codeforces 359
    套题 bestcoder 84
    hdu 5748(求解最长上升子序列的两种O(nlogn)姿势)
    观django-messages包笔记
    django form
    省份、城市、区县三级联动Html代码
    django perm用法
  • 原文地址:https://www.cnblogs.com/gcczhongduan/p/4839250.html
Copyright © 2011-2022 走看看