secrets icon indicating copy to clipboard operation
secrets copied to clipboard

Secure storage for cryptographic secrets in Rust

Results 15 secrets issues
Sort by recently updated
recently updated
newest added

You don't support [email protected]. So don't say you do. Yes, cargo by default will give you [email protected], and everything will work. But also, libc could release a version 0.3 with...

`bool` and `char` are not able to have any arbitrary bit-pattern, so they should not implement `Bytes`. fixes #100

The documentation for `secrets::traits::Bytes` states: > Any type that implements Bytes must not exhibit undefined behavior when its underlying bits are set to any arbitrary bit pattern. Currently, `bool` and...

There is crate called [memsec](https://crates.io/crates/memsec) which is a pure Rust implementation of libsodium/utils. Maybe we can replace libsodium entirely? I'm willing to open a PR.

Hey! Your examples mostly showcase usage with raw bytes. Could you help me out on working with a String that I want to securely store inside one of the Secret...

Referencing concerns raised in #82 by @oblique.

One way is what OpenSSH does, which is encrypting sensitive information with a random prekey of 16kb size. Because of the size, attacker is unlikely to retrieve prekey with the...

Mentioning "0" would mean cargo would pick the latest dependency which is versioned "0.*" which would include versions incompatible with the one that this crate was written with and may...