cloudiful-redactor 0.3.3

Structured text redaction with reversible sessions for secrets, domains, URLs, and related sensitive values.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod crypto;
mod inspect;
mod restore;
mod store;

pub use crypto::{decrypt_session_from_str, encrypt_session_to_string};
pub use inspect::inspect_encrypted_session;
pub use restore::{
    RestoreContext, ensure_restore_valid, restore_patch_with_session, restore_text_with_session,
};
pub use store::{SessionStore, StoredSession, require_external_id};