nicholasbishop / ext4-view-rs

Rust library for reading ext2/ext4 filesystems
https://crates.io/crates/ext4-view
Apache License 2.0
8 stars 2 forks source link

Add checksum module #9

Closed nicholasbishop closed 4 months ago

nicholasbishop commented 4 months ago

This will be used to perform checksum calculations for various ext4 data structures. Most of the work is done by the crc crate, but the kernel's way of checksumming things is just slightly different, so it's helpful to have a little wrapper.

Temporarily allow dead_code since the module is not used yet.