|
|
|
|
|
by gregwtmtno
3916 days ago
|
|
I love Rust, but it's important to understand what it promises and what it doesn't. While Rust is considered a "safe" language, I think the term is a little misleading. I prefer "memory-safe." There are plenty of ways to mess up something like a password manager that don't involve failures of memory safety. Additionally, Rust is only memory-safe to the extent that you do not use unsafe code and that includes the libraries that your project depends on. That said, I am not qualified to evaluate the security of this project. It may very well be that this password manager is very secure. |
|