视频文件MD5值获取及校验

来源:互联网 发布:淘宝怎么看价格走势 编辑:程序博客网 时间:2024/06/01 21:18

最近在做大文件分割,分片上传,达到充分利用网络带宽

> 文件的上传与下载极易出错,尤其涉及使用断点续传方式上传或下载的文件。> 目的:校验MD5值是为了防止在传输的过程当中丢包或者数据包被篡改

MD5值得作用:任何一个字符串或文件,无论是可执行程序、图像文件、临时文件或者其他任何类型的文件,也不管它体积多大,都有且只有一个独一无二的MD5信息码,并且如果这个文件被修改过,它的MD5码也将随之改变。

Mac,如何通过终端验证文件的MD5

在终端执行命令: md5 文件的路径
例如:
mac终端生成MD5

OC 根据视频文件路径获取文件MD5

代码如下:
需要导入头文件和定义宏

#import <CommonCrypto/CommonDigest.h>#define FileHashDefaultChunkSizeForReadingData 1024*8- (NSString*)getFileMD5WithPath:(NSString*)path{    return (__bridge_transfer NSString *)FileMD5HashCreateWithPath((__bridge CFStringRef)path, FileHashDefaultChunkSizeForReadingData);}CFStringRef FileMD5HashCreateWithPath(CFStringRef filePath,size_t chunkSizeForReadingData) {    // Declare needed variables    CFStringRef result = NULL;    CFReadStreamRef readStream = NULL;    // Get the file URL    CFURLRef fileURL =    CFURLCreateWithFileSystemPath(kCFAllocatorDefault,                                  (CFStringRef)filePath,                                  kCFURLPOSIXPathStyle,                                  (Boolean)false);    if (!fileURL) goto done;    // Create and open the read stream    readStream = CFReadStreamCreateWithFile(kCFAllocatorDefault,                                            (CFURLRef)fileURL);    if (!readStream) goto done;    bool didSucceed = (bool)CFReadStreamOpen(readStream);    if (!didSucceed) goto done;    // Initialize the hash object    CC_MD5_CTX hashObject;    CC_MD5_Init(&hashObject);    // Make sure chunkSizeForReadingData is valid    if (!chunkSizeForReadingData) {        chunkSizeForReadingData = FileHashDefaultChunkSizeForReadingData;    }    // Feed the data to the hash object    bool hasMoreData = true;    while (hasMoreData) {        uint8_t buffer[chunkSizeForReadingData];        CFIndex readBytesCount = CFReadStreamRead(readStream,(UInt8 *)buffer,(CFIndex)sizeof(buffer));        if (readBytesCount == -1) break;        if (readBytesCount == 0) {            hasMoreData = false;            continue;        }        CC_MD5_Update(&hashObject,(const void *)buffer,(CC_LONG)readBytesCount);    }    // Check if the read operation succeeded    didSucceed = !hasMoreData;    // Compute the hash digest    unsigned char digest[CC_MD5_DIGEST_LENGTH];    CC_MD5_Final(digest, &hashObject);    // Abort if the read operation failed    if (!didSucceed) goto done;    // Compute the string result    char hash[2 * sizeof(digest) + 1];    for (size_t i = 0; i < sizeof(digest); ++i) {        snprintf(hash + (2 * i), 3, "%02x", (int)(digest[i]));    }    result = CFStringCreateWithCString(kCFAllocatorDefault,(const char *)hash,kCFStringEncodingUTF8);done:    if (readStream) {        CFReadStreamClose(readStream);        CFRelease(readStream);    }    if (fileURL) {        CFRelease(fileURL);    }    return result;}

亲身实践验证,获取的文件MD5值和MAC终端生产的MD5值一致,可放心使用 ~
共同学习,共同进步,共勉 ~

原创粉丝点击