Expand description
Redaction strategies for anonymizing data.
Each strategy implements a different approach to redacting values:
null: Replace with NULLconstant: Replace with a fixed valuehash: One-way hash (deterministic)mask: Partial masking with patternshuffle: Redistribute values within columnfake: Generate realistic fake dataskip: No redaction (passthrough)
Structs§
- Constant
Strategy - Strategy that replaces all non-NULL values with a constant
- Fake
Strategy - Strategy that generates fake data
- Hash
Strategy - Strategy that hashes values with SHA256
- Mask
Strategy - Strategy that partially masks values using a pattern.
- Null
Strategy - Strategy that replaces all values with NULL
- Shuffle
Strategy - Strategy that shuffles values within a column
- Skip
Strategy - Strategy that passes values through unchanged
Enums§
- Redact
Value - Value representation for redaction
- Strategy
Kind - Redaction strategy kind with associated configuration
Traits§
- Strategy
- Trait for redaction strategies