jsonwebtoken
jsonwebtoken copied to clipboard
Adding secrecy or zeroize for EncodingKey and DecodingKey
It probably makes sense to either add the https://crates.io/crates/secrecy or the https://crates.io/crates/zeroize crate to this crate. This way we can make sure that private and secret keys are securely erased from memory when dropped.
You mean in a custom Drop
impl? I've used zeroize before so i would lean towards that