cribra 0.4.0

Embeddable, local-first Rust engine for detecting, reviewing, and safely transforming secrets and sensitive data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Validators that require source context in addition to the candidate value.

mod context;

pub(crate) mod aws;
pub(crate) mod azure;
pub(crate) mod gcp;
pub(crate) mod generic;
pub(crate) mod hash;
pub(crate) mod password;
pub(crate) mod utils;

pub(crate) use context::ValidationContext;