iOS 中MD5和sha1加密

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 中MD5和sha1加密相关的知识,希望对你有一定的参考价值。

#import "CommonCrypto/CommonDigest.h"

-(NSString *)getSha1String

{

    NSData *data = [self dataUsingEncoding:NSUTF8StringEncoding];

    uint8_t digest[CC_SHA1_DIGEST_LENGTH];

    

    CC_SHA1(data.bytes, data.length, digest);

    

    NSMutableString* result = [NSMutableString stringWithCapacity:CC_SHA1_DIGEST_LENGTH *2];

    for(int i =0; i < CC_SHA1_DIGEST_LENGTH; i++) {

        [result appendFormat:@"%02x", digest[i]];

    }

    

    return result;

}

 

-(NSString *)getMd5String

{

    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];

}

 

以上是关于iOS 中MD5和sha1加密的主要内容,如果未能解决你的问题,请参考以下文章

C#中使用SHA1和MD5加密字符串

字符串的加密与解密(3DES、sha1、MD5) - swift3.1

PHP数据加密技术之一---MD5()和Sha1()加密

python 中md5 和 sha1 加密, md5 + os.urandom 生成全局唯一ID

AES加密解密&amp;&amp;SHA1SHA加密&amp;&amp;MD5加密

javascript加密,md5加密库,sha1加密库