9 releases
| 0.2.0 | Aug 29, 2022 |
|---|---|
| 0.2.0-alpha.0 | Nov 11, 2021 |
| 0.1.2 | Nov 8, 2021 |
| 0.0.0 | Nov 7, 2021 |
#212 in Value formatting
2,151 downloads per month
Used in 2 crates
17KB
388 lines
Redacted
Library providing a transparent wrapper type for controlling Debug and Display behavior for
potentially sensitive collections of bytes, including completely redacting them.
This library is intended to aid in controlling how sensitive types, such as cryptographic types, appear in logs, including being able to redact them entirely to prevent leaking sensitive information through debug output. However, it is more generally useful, and can also be used simply to force byte arrays to render as hex or the like in debug output.
Examples
Completely redact contents
use redacted::FullyRedacted;
let item = FullyRedacted::new(vec![0_u8; 32]);
let output = format!("{:?}", item);
assert_eq!(output, "[32 BYTES REDACTED]");
Render contents as hex
use redacted::{Redacted, formatter::FullHex};
let item: Redacted<_, FullHex> = Redacted::new(vec![0_u8; 8]);
let output = format!("{:?}", item);
assert_eq!(output, "0x0000000000000000");
Render contents as a truncated hex string
use redacted::{Redacted, formatter::TruncHex};
let item: Redacted<_, TruncHex<8>> = Redacted::new(vec![0_u8; 32]);
let output = format!("{:?}", item);
assert_eq!(output, "0x00000000...(32 bytes)");
Dependencies
~210KB