#secret #value #logged #displayed #minimalist

secret-value

Prevents values from being displayed or logged

1 unstable release

0.1.0 Apr 1, 2021

#5 in #logged

Download history 25/week @ 2024-04-02 12/week @ 2024-04-09 2/week @ 2024-05-21 13/week @ 2024-05-28 6/week @ 2024-06-04 9/week @ 2024-06-11 1/week @ 2024-06-18

79 downloads per month

MIT license

5KB
116 lines

secret-value

is a minimalistic crate for ensuring that no secret value was displayed or logged.

Security notice: this crate doesn't provide any kind of protection from direct memory access!

Usage

Simply wrap up your type in Secret and that's it. You may access inner type via Secret::inner method.

Serde support

This library supports derive of serde traits but it's disabled by default. Use features = ["serde"] to enable it. By default Serialize does not leak the inner value, a reversible serialization might be settled with #[serde(serialize_with = "insecure_serialize")] field attribute.

Dependencies

~180KB