18
votes
7answers
1k views
The necessity of hiding the salt for a hash
At work we have two competing theories for salts. The products I work on use something like a user name or phone number to salt the hash. Essentially something that is different for each user but is …
15
votes
9answers
713 views
Why should hash functions use a prime number modulus?
A long time ago, I bought a data structures book off the bargain table for $1.25. In it, the explanation for a hashing function said that it should ultimately mod by a prime number because of "the …
15
votes
8answers
783 views
Detecting if two images are visually identical
Sometimes two image files may be different on a file level, but a human would consider them perceptively identical. Given that, now suppose you have a huge database of images, and you wish to know if …
14
votes
13answers
2k views
How come MD5 hash values are not reversible?
Hey everyone,
One concept I've always wondered about is the use of cryptographic hash functions and values. I understand that these functions can generate a hash value that is unique and virtually …
11
votes
8answers
3k views
Secure hash and salt for PHP passwords
It is currently said that MD5 is partially unsafe.
Taking this into consideration, I'd like to know which mechanism to use for password protection.
Is “double hashing” a password less secure than …
10
votes
6answers
533 views
How to store passwords *correctly*?
An article that I stumbled upon here in SO provided links to other articles which in turn provided links to even more articles etc.
And in the end I was left completely stumped - so what is the best …
8
votes
8answers
260 views
Good hash function for permutations?
I have got numbers from (usually in the range of 0 to 1000). An algorithm selects some numbers from this range (about 3 to 10 numbers). This selection is done quite often, and I need to check if a …
7
votes
9answers
723 views
Which hash function should I choose?
The .NET framework ships with 6 different hashing algorithms:
MD5: 16 bytes (Time to hash 500MB: 1462 ms)
SHA1: 20 bytes (1644 ms)
SHA256: 32 bytes (5618 ms)
SHA384: 48 bytes (3839 ms)
SHA512: 64 …
7
votes
12answers
3k views
What is a performant string hashing function that results in a 32 bit integer with low collision rates?
I have lots of unrelated named things that I'd like to do quick searches against. An "aardvark" is always an "aardvark" everywhere, so hashing the string and reusing the integer would work well to …
6
votes
11answers
276 views
Storing encrypted passwords
My coworker and I are having a fist-fight civilized discussion over password security. Please help us resolve our differences.
One of us takes the viewpoint that:
Storing passwords encrypted using …
6
votes
10answers
300 views
Is it possible for compression algorithms to generate identical output for two different files?
I would like to know if compression algorithms always generate unique output for two different sets of files.
Say, I have two files A and B, and say I am applying a compression algorithm (for …
6
votes
6answers
261 views
Are salts useless for security if the attacker knows them?
Let's say I have a table of users set up like this:
CREATE TABLE `users` (
`id` INTEGER PRIMARY KEY,
`name` TEXT,
`hashed_password` TEXT,
`salt` TEXT
)
When a user is created, a …
6
votes
7answers
3k views
Best hashing algorithm in terms of hash collisions and performance
What would be the best hashing algorithm if we had the following priorities (in that order):
Minimal hash collisions
Performance
It doesn't have to be secure. Basically I'm trying to create an …
5
votes
7answers
413 views
GetHashCode Extension Method
After reading all the questions and answers on StackOverflow concerning overriding GetHashCode() I wrote the following extension method for easy and convenient overriding of GetHashCode():
public …
5
votes
9answers
688 views
Most efficient sorting algorithm for many identical keys?
What is the most efficient algorithm for grouping identical items together in an array, given the following:
Almost all items are duplicated several times.
The items are not necessarily integers or …
