keyhog-scanner 0.5.41

keyhog-scanner: high-performance SIMD-accelerated secret detection engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Scan pipeline: context windows, scan-loop helpers, and post-match processing.

mod context_window;
mod postprocess;
mod scan_loop;

pub use context_window::compute_line_offsets;
#[cfg(feature = "multiline")]
pub(crate) use context_window::line_window_offsets;
pub(crate) use context_window::local_context_window;
pub(crate) use context_window::normalize_scannable_chunk;
pub(crate) use context_window::{find_companion, match_line_number};
pub(crate) use postprocess::{build_raw_match, build_synthetic_raw_match};
pub(crate) use scan_loop::{is_within_hex_context, match_entropy};