#crc32 #checksum #byond #crc

no-std byond-crc32

Fast CRC-32/BYOND checksum computation

6 stable releases

3.0.0 Mar 27, 2022
2.0.0 Jan 26, 2022
1.2.1 Jan 25, 2022
1.1.0 Apr 14, 2021
1.0.0 Apr 13, 2021

#2250 in Algorithms

MIT/Apache

74KB
1K SLoC

byond-crc32

byond-crc32 Documentation License: MIT or Apache-2.0

Fast CRC-32/BYOND checksum computation

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

Example

use byond_crc32::Crc32;

let mut crc32 = Crc32::new();
crc32.update(b"123456789");
let checksum = crc32.as_u32();

Dependencies