fix
杨锴
2024-08-23 adc2db9bb29e7f316c46b6de679db1522ffc9cc8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  NSMutableData+OSS_CRC.m
//  AliyunOSSSDK
//
//  Created by 怀叙 on 2017/11/29.
//  Copyright © 2017年 阿里云. All rights reserved.
//
 
#import "NSMutableData+OSS_CRC.h"
#include "aos_crc64.h"
 
@implementation NSMutableData (OSS_CRC)
 
- (uint64_t)oss_crc64
{
    return aos_crc64(0, self.mutableBytes, self.length);
}
 
@end