12345678910111213141516171819202122232425262728 |
- //
- // NSData+NTES.m
- // NIM
- //
- // Created by amao on 7/2/15.
- // Copyright (c) 2015 Netease. All rights reserved.
- //
- #import "NSData+NTES.h"
- #import <CommonCrypto/CommonDigest.h>
- @implementation NSData (NTES)
- - (NSString *)MD5String {
- const char *cstr = [self bytes];
- unsigned char result[16];
- CC_MD5(cstr, (CC_LONG)[self length], 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]
- ];
- }
- @end
|