axum-login
axum-login copied to clipboard
Evaluate better management of sensitive data
Previously we relied on the secrecy
crate to ensure the session_auth_hash
was handled carefully. However, it's unclear to me how active development is of that crate. It's also worth mentioning there are at least two other crates with similar goals.
It would be helpful to evaluate if any of these crates should be adopted for managing the session_auth_hash
value:
Secrecy seems a bit of an overkill if we just want to keep stuff out of logs. From your proposed libraries redact
seems like what we want.