I've not understood why one wouldn't use Chrome or Edge's built-in password manager. Is there a compelling reason to use a separate password manager app?
Ask HN: What password managers can you recommend?
21–30 of 136 posts
Re: Ask HN: What password managers can you recommend?
#22Why are Dropbox and iCloud preferable to 1Password sync?
Re: Ask HN: What password managers can you recommend?
#23It is Dropbox friendly meaning any change or addition in another person using the same vault in the same directory is automatically updated in all open vaults. This was originally for collaboration. You can have your own private vault too with a unique password, as many as you like. They just end up as XML files. It runs fast as uses databinding, can generate strong passwords, and makes copying/pasting easy. I am having trouble encrypting files over 1GB though.
I take great lengths to protect the key. If the file is open too long, it minimizes and locks, when you open it, it decrypts everything again. As soon as decryption is done, the key is stashed away using ProtectMemory function in the framework. I have done memory dumps to ensure the key is not visible when the app is idle.
Files works differently, Their meta data is encrypted but you are able to checksum then and preview them in memory without the key ever being exposed and the content never touches the disk and is zeroed afterward. You can currently play sound, view pictures, execute files (in memory!) and soon video.
I plan on browser integration by a cross-browser userscript and loopback routing (127.0.0.1) that recognizes when the cursor is in a field specified in the login's metadata. But I am am running into trouble because sites like to randomize the name of the login fields, so I a have to use some reliable heuristic approach.
Does anyone have any ideas on how to deal with that? If I can figure that out, and get video previews working I will open source it.
EDIT: Here's a preview of the app: https://imgur.com/a/rZGPCPZ
Re: Ask HN: What password managers can you recommend?
#24Re: Ask HN: What password managers can you recommend?
#25If you don't self-host, note that everything is encrypted before being stored at bitwarden. They don't have access to your passwords.
Re: Ask HN: What password managers can you recommend?
#26Re: Ask HN: What password managers can you recommend?
#27Bitwarden. The free version does everything I need from a password manager (which is to store, sync and generate passwords); decent browser extension, decent mobile app.
+1 Bitwarden. I wish they dog fooded more so they can see how bad their browser extension is though.
Re: Ask HN: What password managers can you recommend?
#28> they seem insistent on making the experience as terrible as possible lately
Re: Ask HN: What password managers can you recommend?
#29I've not understood why one wouldn't use Chrome or Edge's built-in password manager. Is there a compelling reason to use a separate password manager app?
I thought they were stored on-disk in a non-encrypted SQLite database. So anyone with physical access to your computer has all your passwords.