laysakura / serde-encrypt

🔐 Encrypts all the Serialize.
Apache License 2.0
175 stars 6 forks source link

random generator at users' option #31

Closed laysakura closed 3 years ago

laysakura commented 3 years ago
trait SerdeEncrypt {
    type Rng: SecureRng;

    fn rng(&self) -> &mut Self::Rng { ... }
}

?

laysakura commented 3 years ago

I feel not necessary for now