Last active
March 29, 2023 10:52
-
-
Save antfarm/695fa78e0730b67eb094c77d53942216 to your computer and use it in GitHub Desktop.
CRC32 checksum generation in a few lines of Swift 5. https://en.wikipedia.org/wiki/Cyclic_redundancy_check#CRC-32_algorithm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CRC32 { | |
static var table: [UInt32] = { | |
(0...255).map { i -> UInt32 in | |
(0..<8).reduce(UInt32(i), { c, _ in | |
(c % 2 == 0) ? (c >> 1) : (0xEDB88320 ^ (c >> 1)) | |
}) | |
} | |
}() | |
static func checksum(bytes: [UInt8]) -> UInt32 { | |
return ~(bytes.reduce(~UInt32(0), { crc, byte in | |
(crc >> 8) ^ table[(Int(crc) ^ Int(byte)) & 0xFF] | |
})) | |
} | |
} |
I have a personal vendetta against the ternary operator. Here's a simplification. ((0xEDB88320 * (c % 2)) ^ (c >> 1))
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this! I used
checksum<T: DataProtocol>(bytes: T)
to accept Data as well as [UInt8]