keyhog-core 0.1.0

Core types, traits, and detector specs for the secret scanner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Core types shared across all KeyHog crates.
//!
//! Defines the [`Source`] trait for pluggable input backends, [`DetectorSpec`]
//! for TOML-based pattern definitions, [`Finding`] for scanner output, and
//! [`Report`] for structured result formatting.

/// Credential/path allowlist parsing and matching.
pub mod allowlist;
mod finding;
mod report;
mod source;
mod spec;

pub use finding::*;
pub use report::*;
pub use source::*;
pub use spec::*;