force-net / Crc32.NET

Fast version of Crc32 algorithm for .NET
MIT License
199 stars 52 forks source link

Native version to call with dllimport? #24

Closed Mrgaton closed 3 months ago

Mrgaton commented 3 months ago

I need the fastest way of checking the crc32 of large files so a native version would be great if I could call it with a byte[] or with a file path

force-net commented 3 months ago

You can use https://github.com/robertvazan/crc32c-hw/blob/master/crc32c/crc32c.c implementation of crc32c algorithm and change poly for crc32

Mrgaton commented 3 months ago

Thanks