How can I count CRC (32 or 64) of an NSData object in Objective-C?
Thanks in advance!
From iOS11 use this:
unsigned long result = crc32_z(0, data.bytes, data.length);