codewalk 0.3.0

Walk code trees with binary detection, bounded reads, and scanner-oriented filtering
Documentation
1
2
3
4
5
6
7
8
9
10
//! Shared file probing and enrichment primitives.

pub mod file_type;
pub mod format;
pub mod pe;

pub use hashkit::entropy::{entropy_bucket, shannon_entropy};
pub use file_type::{FileType, detect_file_type};
pub use format::{DecompressFormat, detect_format};
pub use pe::{PeMetadata, parse_pe};