จะคำนวณ MD5 ใน Objective-C ได้อย่างไร?
จะคำนวณ MD5 ใน Objective-C ได้อย่างไร?
คำตอบ:
md5 มีอยู่ใน iPhone และสามารถเพิ่มเป็นส่วนเสริมสำหรับ ie NSString
และNSData
like ด้านล่าง
MyAdditions.h
@interface NSString (MyAdditions)
- (NSString *)md5;
@end
@interface NSData (MyAdditions)
- (NSString*)md5;
@end
MyAdditions.m
#import "MyAdditions.h"
#import <CommonCrypto/CommonDigest.h> // Need to import for CC_MD5 access
@implementation NSString (MyAdditions)
- (NSString *)md5
{
const char *cStr = [self UTF8String];
unsigned char result[CC_MD5_DIGEST_LENGTH];
CC_MD5( cStr, (int)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]
];
}
@end
@implementation NSData (MyAdditions)
- (NSString*)md5
{
unsigned char result[CC_MD5_DIGEST_LENGTH];
CC_MD5( self.bytes, (int)self.length, 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]
];
}
@end
เพิ่ม NSData md5 เพราะฉันต้องการมันเองและคิดว่านี่เป็นสถานที่ที่ดีในการบันทึกตัวอย่างเล็ก ๆ น้อย ๆ นี้ ...
วิธีการเหล่านี้ได้รับการตรวจสอบโดยใช้เวกเตอร์ทดสอบ NIST MD5 ใน http://www.nsrl.nist.gov/testdata/
strlen
ให้คำเตือน: "การแปลงโดยนัยสูญเสียความแม่นยำจำนวนเต็ม: 'unsigned long' ถึง 'CC_LONG' (aka 'unsigned int')"
คุณสามารถใช้ไลบรารี Common Crypto ในตัวเพื่อทำเช่นนั้น อย่าลืมนำเข้า:
#import <CommonCrypto/CommonDigest.h>
แล้ว:
- (NSString *) md5:(NSString *) input
{
const char *cStr = [input UTF8String];
unsigned char digest[CC_MD5_DIGEST_LENGTH];
CC_MD5( cStr, strlen(cStr), digest ); // This is the md5 call
NSMutableString *output = [NSMutableString stringWithCapacity:CC_MD5_DIGEST_LENGTH * 2];
for(int i = 0; i < CC_MD5_DIGEST_LENGTH; i++)
[output appendFormat:@"%02x", digest[i]];
return output;
}
self
ก่อนดำเนินการ; ถ้าตัวเองเป็นศูนย์มันจะพัง
(int)
ก่อนstrlen
เช่น(int)strlen
...
หากประสิทธิภาพเป็นสิ่งสำคัญคุณสามารถใช้เวอร์ชันที่ปรับให้เหมาะสมนี้ได้ มันเป็นเรื่องเกี่ยวกับ 5 ครั้งเร็วกว่าคนที่มีหรือstringWithFormat
NSMutableString
นี่คือหมวดหมู่ของ NSString
- (NSString *)md5
{
const char* cStr = [self UTF8String];
unsigned char result[CC_MD5_DIGEST_LENGTH];
CC_MD5(cStr, strlen(cStr), result);
static const char HexEncodeChars[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
char *resultData = malloc(CC_MD5_DIGEST_LENGTH * 2 + 1);
for (uint index = 0; index < CC_MD5_DIGEST_LENGTH; index++) {
resultData[index * 2] = HexEncodeChars[(result[index] >> 4)];
resultData[index * 2 + 1] = HexEncodeChars[(result[index] % 0x10)];
}
resultData[CC_MD5_DIGEST_LENGTH * 2] = 0;
NSString *resultString = [NSString stringWithCString:resultData encoding:NSASCIIStringEncoding];
free(resultData);
return resultString;
}
เนื่องจากมีคนถามหาเวอร์ชันสตรีมไฟล์ ฉันได้แก้ไขตัวอย่างเล็ก ๆ น้อย ๆ ที่สวยงามที่สร้างโดย Joel Lopes Da Silva ที่ทำงานร่วมกับ MD5, SHA1 และ SHA512 และใช้สตรีม สร้างขึ้นสำหรับ iOS แต่ใช้งานได้กับการเปลี่ยนแปลงเพียงเล็กน้อยบน OSX เช่นกัน (ลบวิธี ALAssetRepresentation) สามารถทำการตรวจสอบไฟล์ที่กำหนด filepath หรือ ALAssets (โดยใช้ ALAssetRepresentation) เป็นการรวมข้อมูลเป็นแพ็กเกจขนาดเล็กทำให้หน่วยความจำมีผลกระทบน้อยที่สุดโดยไม่คำนึงถึงขนาดไฟล์ / ขนาดเนื้อหา
ปัจจุบันอยู่ใน github ที่นี่: https://github.com/leetal/FileHash
เหตุผลใดก็ตามที่ไม่ใช้การใช้งาน Apple: https://developer.apple.com/library/mac/documentation/Security/Conceptual/cryptoservices/GeneralPurposeCrypto/GeneralPurposeCrypto.html#//apple_ref/doc/uid/TP40011172-CH9-SW1
ค้นหา Cryptographic Services Guide บนไซต์นักพัฒนา Apple