forked from Feijunjie/GTMBase64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMD5Encryption.m
executable file
·40 lines (35 loc) · 1.14 KB
/
MD5Encryption.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// MyUtility.m
// ThuInfo
//
// Created by WenHao on 12-10-30.
// Copyright (c) 2012年 WenHao. All rights reserved.
//
#import "MD5Encryption.h"
#import <CommonCrypto/CommonDigest.h>
@implementation MD5Encryption
//md5加密-32位 (小写)
+ (NSString *)md5by32:(NSString*)input
{
const char* str = [input UTF8String];
unsigned char result[CC_MD5_DIGEST_LENGTH];
CC_MD5(str, strlen(str), result);
NSMutableString *ret = [NSMutableString stringWithCapacity:CC_MD5_DIGEST_LENGTH*2];
for(int i = 0; i<CC_MD5_DIGEST_LENGTH; i++) {
[ret appendFormat:@"%02x",result[i]];
}
return ret;
}
//md5 16位加密 (大写)
- (NSString *)md5:(NSString *)str {
const char *cStr = [str UTF8String];
unsigned char result[16];
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]
];
}
@end