Tagged Questions
The hashing tag has no wiki summary.
133
votes
12answers
37k 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 ...
61
votes
12answers
3k views
Why do salts make dictionary attacks 'impossible'?
Possible Duplicate:
Need some help understanding password salt
Update: Please note I am not asking what a salt is, what a rainbow table is, what a dictionary attack is, or what the purpose ...
44
votes
9answers
6k 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 ...
37
votes
6answers
11k views
SHA512 vs. Blowfish and Bcrypt
I'm looking at hashing algorithms, but couldn't find an answer.
Bcrypt uses Blowfish
Blowfish is better than MD5
Q: but is Blowfish better than SHA512?
Thanks..
Update:
I want to clarify that ...
37
votes
7answers
4k 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 ...
30
votes
5answers
5k 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 table, so I would ...
25
votes
4answers
4k views
Default implementation for Object.GetHashCode()
Does anyone know or have an idea on how the default implementation for GetHashCode() works? And does it handle structures, classes, arrays, etc efficiently and well enough?
Trying to decide under ...
24
votes
5answers
3k views
Is SHA-1 secure for password storage?
Conclusion: SHA-1 is as safe as anything against preimage attacks, however it is easy to compute, which means it is easier to mount a bruteforce or dictionary attack. (The same is true for successors ...
24
votes
11answers
2k views
Hashing a Tree Structure
I've just come across a scenario in my project where it I need to compare different tree objects for equality with already known instances, and have considered that some sort of hashing algorithm that ...
24
votes
9answers
3k 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 ...
24
votes
8answers
2k 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 ...
24
votes
9answers
21k views
MySQL: what data type to use for hashed password field and what length?
I'm not sure how password hashing works (will be implementing it later), but need to create database schema now.
I'm thinking of limiting passwords to 4-20 characters, but as I understand after ...
23
votes
14answers
6k views
How come MD5 hash values are not reversible?
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 impossible to ...
21
votes
4answers
3k views
Is BCrypt a good encryption algorithm to use in C#? Where can I find it?
I have read that when hashing a password, many programmers recommend using the BCrypt algorithm.
I am programming in C# and is wondering if anyone knows of a good implementation for BCrypt? I found ...
21
votes
9answers
12k views
HashSet vs. List performance
It's clear that a search performance of the generic HashSet<T> class is higher than of the generic List<T> class. Just compare the hash-based key with the linear approach in the ...
19
votes
12answers
12k 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 ...
18
votes
3answers
2k views
Compile time string hashing
I have read in few different places that using C++11's new string literals it might be possible to compute a string's hash at compile time. However, no one seems to be ready to come out and say that ...
18
votes
8answers
13k 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 ...
17
votes
1answer
390 views
OpenJDK's rehashing mechanism
Found this code on http://www.docjar.com/html/api/java/util/HashMap.java.html after searching for a HashMap implementation.
264 static int hash(int h) {
265 // This function ...
17
votes
4answers
306 views
Do hash functions exist in nature?
Given that there are quite a few bioinformaticians around these days, wondering if any of you have seen examples of hash functions (or mapping mechanisms) occuring in nature? And if so how do they ...
17
votes
1answer
2k views
Best practices around generating OAuth tokens?
I realize that the OAuth spec doesn't specify anything about the origin of the ConsumerKey, ConsumerSecret, AccessToken, RequestToken, TokenSecret, or Verifier code, but I'm curious if there are any ...
16
votes
4answers
897 views
Picking five numbers that sum to S
Given an array A of N nonnegative numbers, I'm interested in finding the number of ways you can pick 5 numbers (from distinct positions in the array) such that their sum is S.
There is an easy ...
15
votes
1answer
291 views
Options for caching / memoization / hashing in R
I am trying to find a simple way to use something like Perl's hash functions in R (essentially caching), as I intended to do both Perl-style hashing and write my own memoisation of calculations. ...
15
votes
6answers
1k 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 ...
14
votes
12answers
6k views
How does a hash table work?
I'm looking for an explanation of how a hashtable works - in plain English for a simpleton like me! For example I know it takes the key, calculates the hash (how?) and then performs some kind of ...
14
votes
8answers
9k views
Have a good hash function for a C++ hash table?
I am in need of a performance-oriented hash function implementation in C++ for a hash table that I will be coding. I looked around already and only found questions asking what's a good hash function ...
13
votes
6answers
1k views
c# How to find if two objects are equal
I'm needing to know the best way to compare two objects and to find out if there equal. I'm overriding both GethashCode and Equals. So a basic class looks like:
public class Test
{
public int ...
13
votes
7answers
353 views
Is there a circular hash function?
Thinking about this question on testing string rotation, I wondered: Is there was such thing as a circular/cyclic hash function? E.g.
h(abcdef) = h(bcdefa) = h(cdefab) etc
Uses for this include ...
12
votes
9answers
511 views
O(1) hash look ups?
I ran across an assertion that HashSet<T>.Contains() is an O(1) operation. This surprised me since every discussion of hashing I've encountered mentions the possibility of collisions, ...
12
votes
5answers
552 views
How can I recognize slightly modified images?
I have a very large database of jpeg images, about 2 million. I would like to do a fuzzy search for duplicates among those images. Duplicate images are two images that have many (around half) of ...
11
votes
1answer
597 views
.NET implementation of scrypt
I've read about scrypt and some of it's advantages over the bcrypt hashing algorithm in certain circumstances.
Anyhow, it seems scrypt isn't as widely used yet. Has anyone seen so far a .NET ...
11
votes
2answers
406 views
How to implement a good __hash__ function in python
When implementing a class with multiple properties (like in the toy example below), what is the best way to handle hashing?
I guess that the __eq__ and __hash__ should be consistent, but how to ...
11
votes
13answers
818 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 ...
11
votes
6answers
2k views
Good way to hash a float vector?
I am well aware of all the problems involved in comparing floats. This is exactly the reason for this question.
I'm looking to create a fast hash table for values that are 3D vectors (3 floats - ...
10
votes
3answers
637 views
How can we create a fairly secure password hash in PHP?
I have been reading up on password hashing, but all the forums I read are full of posts from people debating theory behind it that I don't really understand.
I have an old (and presumably extremely ...
10
votes
3answers
540 views
compile-time string hashing
I need to use a string as the ID to obtain some object. At implement this in a run-time, and works well. But this makes the static type checking impossible, for obvious reasons.
I've Googled for the ...
10
votes
5answers
1k views
What is the reason behind Enum.hashCode()?
The method hashCode() in class Enum is final and defined as super.hashCode(), which means it returns a number based on the address of the instance, which is a random number from programmers POV.
...
10
votes
2answers
4k views
How can I get the same HMAC256-results in C# like in the PHP unit tests?
I thought I would try and get the new Signed Request logic added to my facebook canvas application, to make this "easy" on myself I went to the facebook PHP sdk over at GitHub and took a look at the ...
10
votes
5answers
952 views
Do I need a “random salt” once per password or only once per database?
Further to my previous question about salted passwords in PHP/MySQL, I have another question regarding salts.
When someone says "use a random salt" to pre/append to a password, does this mean:
...
10
votes
10answers
503 views
Do similar passwords have similar hashes?
Our computer system at work requires users to change their password every few weeks, and you cannot have the same password as you had previously. It remembers something like 20 of your last passwords. ...
10
votes
4answers
1k views
What's the recommended hashing algorithm to use for stored passwords?
Given the known weaknesses of MD5 and the recent (May 2009) weaknesses discussed in SHA1, how should new programs be salting & hashing their passwords?
I've seen SHA-256 and SHA-512 suggested.
...
10
votes
3answers
2k views
How to write a hash function in C?
Hash Tables are said to be the fastest/best way of Storing/Retrieving data.
My understanding of a hash table, hashing is as follows (Please correct me if I am wrong or Please add If there is anything ...
10
votes
2answers
969 views
Does any published research indicate that preimage attacks on MD5 are imminent?
I keep on reading on SO that MD5 is broken, bust, obsolete and never to be used. That angers me.
The fact is that collision attacks on MD5 are now fairly easy. Some people have collision attacks ...
9
votes
4answers
163 views
Is there a hashing algorithm that is tolerant of minor differences?
I'm doing some web crawling type stuff where I'm looking for certain terms in webpages and finding their location on the page, and then caching it for later use. I'd like to be able to check the page ...
9
votes
7answers
1k views
Quantum Computing and Encryption Breaking
I read a while back that Quantum Computers can break most types of hashing and encryption in use today in a very short amount of time(I believe it was mere minutes). How is it possible? I've tried ...
9
votes
4answers
953 views
Is it possible to get identical SHA1 hash?
Given two different strings S1 and S2 (S1 != S2) is it possible that:
SHA1(S1) == SHA1(S2)
is True?
If yes - with what probability?
If not - why not?
Is there a upper bound on the length of a ...
9
votes
8answers
899 views
Good hash function for permutations?
I have got numbers in a specific range (usually from 0 to about 1000). An algorithm selects some numbers from this range (about 3 to 10 numbers). This selection is done quite often, and I need to ...
9
votes
4answers
5k views
C# Create a hash for a byte array or image
Duplicate
How do I generate a hashcode from a byte array in c#
In C#, I need to create a Hash of an image to ensure it is unique in storage.
I can easily convert it to a byte array, but ...
9
votes
8answers
1k 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 ...
9
votes
8answers
2k views
How many random elements before MD5 produces collisions?
I've got an image library on Amazon S3. For each image, I md5 the source URL on my server plus a timestamp to get a unique filename. Since S3 can't have subdirectories, I need to store all of these ...