All Questions
5 questions
0
votes
1
answer
125
views
Master Password & security key approach
I'm currently doing some research on encryption and have read the whitepaper of 1Password (Password Manager) and other tools. I would like to write a small application that can do something similar, ...
1
vote
2
answers
947
views
Play Framework 2.1 Password Encryption [duplicate]
I have an application that talks to the database for which I have to load the credentials for the database connection from my application.conf. I would like to have my credentials, at least the ...
2
votes
3
answers
2k
views
Securely storing credentials that can't be encrypted
I have a client that's running an aggregator of information from multiple accounts. The database needs to store usernames and password to other websites in a way that can be used later by a script to ...
1
vote
3
answers
507
views
Derive password for database from (multiple) user input (application password)
I'm writing a small business application using C# (.NET 4.0, SQL CE 4.0 database). The database is encrypted (SQL CE supports database encryption), but as far as I know, from http://msdn.microsoft.com/...
2
votes
2
answers
463
views
Storing metadata about password hashes in the database?
I was talking to a friend of mine and he stated that to store user passwords in the database, he, and I quote:
Takes a users password
Hashes it with a random salt
Then, he prefixes the result of #2 ...