Expunge
A crate for expunging/redacting and transforming sensitive fields.
Basic usage
use Expunge;
use ;
let user = User;
let expunged_user = user.expunge;
let output = to_string_pretty.expect;
assert_eq!
| Attribute | Description | Feature |
|---|---|---|
as |
provide a value that this field should be set to when expunged. e.g. Default::default() or "<expunged>".to_string() |
- |
with |
provide a function that will be called when expunging this value. It must return the same type as it takes. e.g. hash a String with sha256::digest. |
- |
all |
can be used instead of specifying #[expunge] on every field/variant in a struct or enum |
- |
ignore |
can be used to skip fields in combination with all |
- |
zeroize |
zeroize memory for extra security via the secrecy & zeroize crates | zeroize |
About
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 implements the Expunge trait for the given type.
Fields annotated with #[expunge] are cleared when the expunge() method is called,
yielding back exactly the same type.
Since the same type is returned, introducing this crate should be completely frictionless.
This comes with the tradeoff that the user is now responsible for ensuring that expunge()
has been called when necessary. To make this more foolproof, this crate includes a type guard Expunged<T>
that can only contain a expunged T. Internally constructing Expunged<T> calls expunge(),
so it cannot be initialized with unexpunged data.
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::Debugand/orstd::fmt::Display - redact: Similar to secrecy, but without the memory zeroizing
- redacted: Wrappers to control debug formatting of potentially sensitive byte arrays
Comparison
| crate | proc_macro | implements Display/Debug | serde support | toggle on/off at runtime | uses original types |
|---|---|---|---|---|---|
| secrecy | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: |
| redact | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: |
| veil | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
| redacted | :x: | :white_check_mark: | :x: | :x: | :x: |
| expunge | :white_check_mark: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
Contributing
- Ensure that all tests are passing
- Open a PR/issue