Expunge
A crate for expunging sensitive fields.
Expunge
1: to strike out, obliterate, or mark for deletion
"In medieval and Renaissance manuscripts, a series of dots was used to mark mistakes or to label material that should be deleted from a text, and those deletion dots can help you remember the history of expunge. They were known as puncta delentia. The puncta part of the name derives from the Latin verb pungere, which can be translated as "to prick or sting" (and you can imagine that a scribe may have felt stung when their mistakes were so punctuated in a manuscript). Pungere is also an ancestor of expunge, as well as a parent of other dotted, pointed, or stinging terms such as punctuate, compunction, poignant, puncture, and pungent."
About
At the core of Expunge
is the Expunge
trait, which is used for all transformations.
pub trait Expunge {
fn expunge(self) -> Self
where
Self: Sized;
}
Other crates offer similar functionality, but either require types to be changed or make it difficult for both the expunged and unexpunged data being used at runtime.
This crate provides a proc_macro that derives the Expunge
trait for the given type.
When the Expunge::expunge
method is called, sensitive fields are transformed/redacted.
- All fields are transformed unless annotated with
#[expunge(skip)]
- The
Expunge
macro first looks for transformations declared on field/struct attributes i.e.as
orwith
. If these aren't set thenExpunge
macro will use theExpunge::expunge
implementation for the type. - A default implementation for the
Expunge
trait is provided for primitive types and common container types. These will be expunged as their default values, unless otherwise specified.
Since expunge doesn't require types to be changed, migrating to this crate should be completely frictionless.
Similar crates
- secrecy: Prevents secrets being logged/serialized by wrapping them in a
Secret<T>
type - veil: A proc_macro similar to this crate to implement expunged
std::fmt::Debug
and/orstd::fmt::Display
- redact: Similar to secrecy, but without the memory zeroizing
- redacted: Wrappers to control debug formatting of potentially sensitive byte arrays