Tagged Questions
A hash function is any well-defined procedure or mathematical function that converts a large, possibly variable-sized amount of data into a small datum, usually a single integer that may serve as an index to an array (cf. associative array). The values returned by a hash function are called hash values, hash codes, hash sums, checksums or simply hashes.
110
votes
13answers
104k views
73
votes
9answers
11k views
How does password salt help against a rainbow table attack?
I'm having some trouble understanding the purpose of a salt to a password. It's my understanding that the primary use is to hamper a rainbow table attack. However, the methods I've seen to implement ...
51
votes
9answers
19k views
Why does Java's hashCode() in String use 31 as a multiplier?
In Java, the hash code for a String object is computed as
s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
using int arithmetic, where s[i] is the ith character of the string, n is the length of the ...
50
votes
10answers
4k views
Is there an MD5 Fixed Point where md5(x) == x?
Is there a fixed point in the MD5 transformation, i.e. does there exist x such that md5(x) == x?
49
votes
7answers
12k views
Salting Your Password: Best Practices?
I've always been curious... Which is better when salting a password for hashing: prefix, or postfix? Why? Or does it matter, so long as you salt?
To explain: We all (hopefully) know by now that we ...
46
votes
13answers
7k views
Is “double hashing” a password less secure than just hashing it once?
Is hashing a password twice before storage any more or less secure than just hashing it once?
What I'm talking about is doing this:
$hashed_password = md5( md5( plaintext_password ) );
instead of ...
42
votes
9answers
1k views
Help with salt and passwords
I want to implement a salt into my login system but am a bit confused on how this is supposed to work. I can't understand the logic behind it. I understand md5 is a one-way algorithm and all of the ...
37
votes
3answers
5k views
Where do you store your salt strings?
I've always used a proper per-entry salt string when hashing passwords for database storage. For my needs, storing the salt in the DB next to the hashed password has always worked fine.
However, ...
36
votes
6answers
849 views
Why is the size 127 (prime) better than 128 for a hash-table?
Supposing simple uniform hashing, that being, any given value is equally like to hash into any of the slots of the hash. Why is it better to use a table of size 127 and not 128? I really don't ...
35
votes
7answers
25k views
Can PHP read the hash portion of the URL?
Assuming a URL of:
www.mysite.com?val=1#part2
PHP can read the request variables "val1" using the GET array.
Is the hash value "part2" also readable? or is this only upto the browser and ...
35
votes
12answers
6k views
Decode email address from Gravatar hash?
I suppose, Gravatar generates the image from email address. If so, the reverse should be possible. How difficult would be to get the email associated with the image? Isnt it a potential spam threat?
...
32
votes
8answers
19k views
Hashset vs Treeset
I've always loved trees, that nice O(n*lg(n)) and the tidyness of them. However, every software engineer I've ever known has asked me pointedly why I would use a treeset. From a CS background, I don't ...
31
votes
8answers
3k views
Pure-Ruby concurrent Hash
What's the best way to implement a Hash that can be modified across multiple threads, but with the smallest number of locks. For the purposes of this question, you can assume that the Hash will be ...
31
votes
9answers
8k views
Non-random salt for password hashes
UPDATE: I recently learned from this question that in the entire discussion below, I (and I am sure others did too) was a bit confused: What I keep calling a rainbow table, is in fact called a hash ...
31
votes
2answers
3k views
Why is '397' used for ReSharper GetHashCode override?
Like many of you, I use ReSharper to speed up the development process. When you use it to override the equality members of a class, the code-gen it produces for GetHashCode() looks like:
public ...
27
votes
13answers
2k views
How can it be impossible to “decrypt” an MD5 hash?
I was reading a question about MD5, and it made me remember something that boggles me. Very simple question, and I'm sorry if it's not a good one. I just can't understand how you convert something to ...
27
votes
5answers
11k views
Storing SHA1 hash values in MySQL
I have a simple question which occured when I wanted to store the result of a SHA1 hash in a MySQL database:
How long should the VARCHAR field be in which I store the hash's result?
26
votes
4answers
337 views
C# Why can equal decimals produce unequal hash values?
We ran into a magic decimal number that broke our hashtable. I boiled it down to the following minimal case:
decimal d0 = 295.50000000000000000000000000m;
decimal d1 = 295.5m;
Console.WriteLine("{0} ...
25
votes
9answers
2k views
Is time() a good salt
I'm looking at some code that I have not written myself. The code tries to hash a password with SHA512 and uses just time() as the salt. Is time() too simple a salt for this or is this code safe?
...
25
votes
5answers
3k views
How do I copy a hash in Ruby?
I'll admit that I'm a bit of a ruby newbie (writing rake scripts, now). In most languages, copy constructors are easy to find. Half an hour of searching didn't find it in ruby. I want to create a copy ...
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
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
7answers
15k views
How to find keys of a hash?
I know in javascript Objects double as hashes but i have been unable to find a built in function to get the keys
var h = {a:'b',c:'d'};
I want something like
var k = h.keys() ; // k = ['a','c'];
...
22
votes
5answers
8k views
Keeping history of hash/anchor changes in JavaScript
I'm currently implementing a JavaScript library that keeps track of the history of changes to the hash part in the address bar. The idea is that you can keep a state in the hash part, and then use the ...
22
votes
8answers
4k views
Difference between Hashing a Password and Encrypting it
The current top-voted to this question states:
Another one that's not so much a security issue, although it is security-related, is complete and abject failure to grok the difference between ...
22
votes
8answers
9k views
What is a good Hash Function?
What is a good Hash function? I saw a lot of hash function and applications in my data structures courses in college, but I mostly got that it's pretty hard to make a good hash function. As a thumble ...
21
votes
6answers
3k views
Fundamental difference between Hashing and Encryption algorithms
I see a lot of confusion between hashes and encryption algorithms and have a general idea of when to use one over the other.
However, I would like to hear some more expert opinions about:
When to ...
21
votes
13answers
25k views
What's the difference between SHA and MD5 (in PHP)?
When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?
21
votes
4answers
13k views
Is a Python dictionary an example of a hash table?
One of the basic data structures in Python is the dictionary, which allows one to record "keys" for looking up "values" of any type. Is this implemented internally as a hash table? If not, what is ...
20
votes
3answers
2k views
Getting hash of a list of strings
I would like to write a function GetHashCodeOfList() which returns a hashcode of a list of strings regardless of order. Given 2 lists with the same strings should return the same hashcode.
ArrayList ...
20
votes
6answers
5k views
What is the best way to convert an array to a hash in Ruby
In Ruby, given an array in one of the following forms...
[apple, 1, banana, 2]
[[apple, 1], [banana, 2]]
...what is the best way to convert this into a hash in the form of...
{apple => 1, ...
19
votes
5answers
332 views
Hashing a python function to regenerate output when the function is modified
I have a python function that has a deterministic result. It takes a long time to run and generates a large output:
def time_consuming_function():
# lots_of_computing_time to come up with ...
19
votes
2answers
14k views
How can I combine hashes in Perl?
What is the best way to combine both hashes into %hash1? I always know that %hash2 and %hash1 always have unique keys. I would also prefer a single line of code if possible.
$hash1{'1'} = 'red';
...
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
7answers
456 views
How are cryptographic hash functions designed?
After reading about why one-way hash functions are one-way, I would like to know how to design a hash function. Yes, I know that it's a bad idea to not use a proven and tested hash function, but I ...
18
votes
10answers
7k views
When is CRC more appropriate to use than MD5/SHA1?
When is it appropriate to use CRC for error detection versus more modern hashing functions such as MD5 or SHA1? Is the former easier to implement on embedded hardware?
18
votes
11answers
15k views
Convert an array into an index hash in Ruby
I have an array, and I want to make a hash so I can quickly ask "is X in the array?".
In perl, there is an easy (and fast) way to do this:
my @array = qw( 1 2 3 );
my %hash;
@hash{@array} = undef;
...
18
votes
8answers
14k 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
7answers
4k views
What is a good 64bit hash function in Java for textual strings?
I'm looking for a hash function that:
Hashes textual strings well (e.g. few collisions)
Is written in Java, and widely used
Bonus: works on several fields (instead of me concatenating them and ...
17
votes
4answers
11k views
php short hash
i am looking for a php function, that creates a short hash out of a string or a file similar to those url-shortening websites like tinyurl.com
the hash should not be longer than 8 characters
thanks!
...
17
votes
4answers
17k views
How can I store multiple values in a Perl hash table?
Up until recently, I've been storing multiple values into different hashes with the same keys as follows:
%boss = (
"Allan" => "George",
"Bob" => "George",
"George" => "lisa" ...
16
votes
6answers
462 views
Password hashing - how to upgrade?
There's plenty of discussion on the best algorithm - but what if you're already in production? How do you upgrade without having to reset on the user?
EDIT/DISCLAIMER: Although I originally wanted ...
16
votes
5answers
801 views
If I make the SALT random for each user, how do I authenticate them?
I've been reading up on the benefits of salting and hashing passwords, but one thing still eludes me...
When I provide a random salt for each user, how do I then know what the salt was when I try to ...
16
votes
4answers
4k views
Password hashing, salt and storage of hashed values
Suppose you were at liberty to decide how hashed passwords were to be stored in a DBMS. Are there obvious weaknesses in a scheme like this one?
To create the hash value stored in the DBMS, take:
A ...
16
votes
13answers
9k views
How do I generate a hashcode from a byte array in c#
Say I have an object that stores a byte array and I want to be able to efficiently generate a hashcode for it. I've used the cryptographic hash functions for this in the past because they are easy to ...
15
votes
3answers
2k views
Storing a hashed password (Bcrypt) in a Database - type/length of column?
I want to store a hashed password (using BCrypt) in a database. What would be a good type for this, and which would be the correct length? Are passwords hashed with BCrypt always of same length?
EDIT
...
15
votes
9answers
5k views
Can two different strings generate the same MD5 hash code?
For each of our binary assets we generate a MD5 hash. This is used to check whether a certain binary asset is already in our application. But is it possible that two different binary assets generate ...
15
votes
8answers
6k views
Convert a Nokogiri document to a Ruby Hash
Is there an easy way to convert a Nokogiri XML document to a Hash?
Something like Rails' Hash.from_xml.
15
votes
6answers
2k views
Google using # instead of search? in URL. Why?
I'm not sure how long they've been doing it but I just noticed google using # in their search url instead of search?.
New way
http://www.google.com/#q=stackoverflow
Old way
...
15
votes
10answers
7k views
Best way to convert strings to symbols in hash
What's the (fastest/cleanest/straightforward) way to convert all keys in a hash from strings to symbols in Ruby?
This would be handy when parsing YAML.
my_hash = YAML.load_file('yml')
I'd like to ...