JuliaIO / CodecZlib.jl

zlib codecs for TranscodingStreams.jl.
Other
50 stars 26 forks source link

CRC call #35

Open bhalonen opened 5 years ago

bhalonen commented 5 years ago

Would this be a good package to implement the crc calls to zlib?

bicycle1885 commented 5 years ago

This package does not provide a function to calculate CRC32, but it's almost trivial to implement that using ccall and CodecZlib.libz.

valeriuo commented 3 years ago

I had a similar need and found the solution in Libz.jl. On the other hand, although these days I mostly write C code, I tend to disagree with the use of ccall. I don't think the community wants to see Julia become the new Numba.