Spencer
Spencer
I am trying to set up sops as a home-manager module. Ive followed the readme mostly, but it seems like it doen't install the sops-nix.service properly. Here are the last...
In the library's current state, if I have something like: ```rust #[derive(Redact)] struct AuthInfo { login: String, #[redact] password: String, } fn main() { let info = AuthInfo { login:...
I implemented an option to redact all data to prevent partial (or complete) leaks of sensitive data. I left the default behavior as it was before, but in my opinion...