3
votes
5answers
213 views
Salt Generation and open source software
Hello,
As I understand it, the best practice for generating salts is to use some cryptic formula (or even magic constant) stored in your source code.
I'm working on a project tha …
6
votes
7answers
177 views
Is forcing complex passwords “more important” than salting?
I've spent the past 2 hours reading up on salting passwords, making sure that I understood the idea. I was hoping some of you could share your knowledge on my conclusions.
Say th …
3
votes
3answers
54 views
Comprehensive information about hash salts
There are a lot of questions about salts and best practices, however most of them simply answer very specific questions about them. I have several questions which feed into one an …
0
votes
5answers
847 views
Salting a C# MD5 ComputeHash on a stream
I can't see any way to salt a MD5.ComputeHash(Stream).
Am I missing some way of injecting bytes into the HashAlgorithm?
I tried performing a ComputeHash(byte[]) before performing …
0
votes
2answers
33 views
create random sha1 salt with javascript
Hi!
can anyone recommend a good method to create a sha1 salt using javascript ?
6
votes
6answers
268 views
Are hashed and salted passwords secure against dictionary attacks?
I understand that salts make the same password hash to different values. However, salts are usually stored in the database with the password. So let's say I am attacker, here is …
6
votes
8answers
189 views
Is it okay to store salts with hashes?
My understanding is that a salt is not intended to be secret, it is merely intended to be different from any centralized standard so that you can't develop a rainbow table or simil …
1
vote
5answers
224 views
Is my authentication encryption any good?
So I've been reading a lot about encryption in PHP. So much that I am not sure exactly what's a really good method to securely store login information.
However, the following func …
0
votes
9answers
496 views
PHP Sessions + Useragent with salt
Hi,
It keeps running in my mind the last couple of days, but I read some articles about how to make your PHP sessions more secure. Almost all of these articles say that you need t …
0
votes
5answers
188 views
is this ok? salting
Hey i would like do have your input on this
I use this to generate unique salts to each of my users when they register (random letters and numbers). how big is the chance that sal …
2
votes
5answers
263 views
Help me make my password storage safe
How much more safer is this than just md5? I've just started look into password security. Im pretty new with php.
$salt = 'csdnfgksdgojnmfnb';
$password = md5($salt.$_POST['passw …
0
votes
1answer
131 views
How can I generate a vBulletin password salt from a md5 hash?
I'm transferring users from my old database to a vBulletin database.
I want a script to do this as it'll take forever otherwise.
I have all the user's passwords stored just like …
1
vote
4answers
131 views
User Login with a single query and per-user password salt
I've decided to implement a user login using a per-user salt, stored in the database. The salt is prefixed to a password which is hashed with SHA and stored in the databse.
In th …
3
votes
4answers
108 views
Salted hashes and password histories
Wondering whether it matters if a salt is unique for a single given user each time the password is changed, or whether it's not a big deal to reuse the same salt each time.
I curr …
5
votes
5answers
476 views
What is the optimal length for user password salt?
Any salt at all will obviously help when salting and hashing a user's password. Are there any best practices for how long the salt should be? I'll be storing the salt in my user …
