Web Based Password Database
I need a password data created for storing passwords on the web.
It should use php and mysql and be usable on either a windows or linux web server.
Passwords should be store in the database encrypted with a configurable salt.
password will have these fields associated with it.
Account
Company
Application
password
computer
Notes
I need to be able to search by company, application, and account. any or all of these fields to be used in the search.
company and application should be presented as a drop down list for the search. It would be nice to have the application list update via ajax if a company was selected, otherwise it would list all applications.
search results should be displayed as a list with Account, Company, and Application headers. password is only displayed when clicking the selection from that list.
a history table should be kept to provide tracking of new password entries and who created them as well as updates and who made the updates.
End User:
It must have user authentication built in.
Only need one type of user, full access, but will have multiple user accounts.
user account passwords should be stored encrypted and have a utility or procedure to create/delete/modify accounts. need not be web based if simple to follow or can be done via phpmyadmin.