jedisct1 / rust-blind-rsa-signatures

RSA blind signatures in Rust
MIT License
26 stars 12 forks source link

Add serde Deserialize and Serialize derives #8

Closed cowlicks closed 5 months ago

cowlicks commented 5 months ago

I only added these on the types which, in my use case, are shared over the wire. They seem to be the most likely types in general to be shared in a blind signature scheme. This is all behind a serde feature flag (including the dependency).

Thank you for this great crate!

cowlicks commented 5 months ago

I added PublicKey and PrivateKey because I had a need to save these to disk for config reasons. I can remove this or move it to a different PR if you'd like.