memorysafety / zlib-rs

A safer zlib
zlib License
75 stars 6 forks source link

stop using crc32 hash on aarch64 #112

Closed folkertdev closed 3 weeks ago

folkertdev commented 3 weeks ago

apparently that is not what's used by zlib-ng (any more?)

https://github.com/zlib-ng/zlib-ng/commit/9953f12e21d3901d8158c59368715c1d7b01b0c6

removes the specific hashing functions from their function table. We did something similar but still do get some specialization (but it's all predictable branches, so that should be faster than a function table).