728x90
-(NSString*) md5:(NSString*)srcStr
{
const char *cStr = [srcStr 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]];
}
728x90
'Developer > iOS' 카테고리의 다른 글
[IPhone] 현재화면 캡쳐하기 (1) | 2011.05.24 |
---|---|
[IPhone] [APNS] java 로 push notification server 및 클라이언트 구현하기(아이폰 푸시 서버) (1) | 2011.04.05 |
[IPhone]코드로 버튼 추가하기. (1) | 2011.03.21 |
[IPhone]UIBarButtonItem에 Custom Button으로 Image로 바꾸기 (0) | 2011.01.24 |
[IPhone] TableView 터치시 파란색을 다른색으로 바꾸기 (1) | 2011.01.19 |