Tagged Questions
270
votes
21answers
10k views
How should I ethically approach user password storage for later plaintext retrieval?
As I continue to build more and more websites and web applications I am often asked to store user's passwords in a way that they can be retrieved if/when the user has an issue (either to email a ...
8
votes
5answers
1k views
How to not hardcode passwords?
In my last question "Portable database for storing secrets" the best answer until now tell to use sqlite-crypt.
Reading sqlite-crypt docs, the new param for open the database is the pass-phrase. Of ...
6
votes
3answers
1k views
PHP Password storage with HMAC+nonce - Is nonce randomness important?
A few years I asked here on stackoverflow about how to make PHP password storage safe.
The main answer suggests using the following hashing algorithm:
function hash_password($password, $nonce) {
...
3
votes
2answers
53 views
One time salts and server password comparison
I've read that one of the more secure ways to authenticate a user is to use one time salts when hashing the password. What I don't get is:
If the client generates a new salt every session, won't the ...
3
votes
2answers
104 views
Re-hashing a hashed password
Assumed knowledge
Hashing, Salting, PBKDF[1-2]
Problem
I am storing passwords in my database using a scaled hashing/salting algorithm like PBKDF2. I thought 'Hey, if i hash my passwords 20000 times, ...
3
votes
4answers
389 views
Encryption of passwords on disk for open source desktop applications
Is it possible to store passwords on the local system (Windows XP) that can only be accessed by the application itself?
My instinctive answer would be "no". Even if some kind of hashing or encyption ...
2
votes
3answers
157 views
What is the best practice for securely storing passwords in Java
What would be the recommended way for storing passwords in a Java desktop application?
I want the user to have the ability to enter the credencials only once and not be prompted again.
On personal ...
1
vote
1answer
52 views
jBCrypt alternative? Threadsafe and with a bigger community
To hash passwords (one-way), it looks like bcrypt is the best.
I am about to start using jBCrypt, but I have a few worries:
No mailing list.
Very low activity overall.
Bug tracker has only ever had ...
1
vote
2answers
118 views
Is hash(site || password || salt) actually a bad idea? [closed]
Suppose I were designing a web service with modest security requirements. For the most part, the threat model would be more about bored college students and less about anything you'd ever find in a ...