What do you guys use to manage all your clients’ login credentials? For each client I have 4-5 sets of usernames and passwords saved in an encrypted excel spreadsheet. I hate doing it this way.
I’m looking for some kind of software or service that can:
- Save my client contact info, notes, etc
- Securely store the various credentials.
You didn’t really specify what the login credentials were used for but I’d recommend you take a look at implementing a SQL database (MySQL, PostgresSQL, etc) for this. You can encrypt the passwords via a hashing algorithm (usually SHA-1 or MD5). You can also add everything else (client contact info, notes, etc) in the database.