Tagged Questions
The hash-collision tag has no wiki summary.
11
votes
1answer
424 views
How was the hash collision issue in ASP.NET fixed (MS11-100)? [closed]
As reported by Slashdot, MS issued an update to ASP.NET to fix the hash collision attack today. (Listed as "Collisions in HashTable May Cause DoS Vulnerability - CVE-2011-3414" on the linked Technet ...
9
votes
4answers
1k views
What's the shortest pair of strings that causes an MD5 collision?
Up to what string length is it possible to use MD5 as a hash without having to worry about the possibility of a collision?
This would presumably be calculated by generating an MD5 hash for every ...
8
votes
5answers
2k views
Examples of Hash-Collisions?
For demonstration-purposes, what are a couple examples of strings that collide when hashed? MD5() is a relatively standard hashing-option, so this will be sufficient.
7
votes
2answers
415 views
What is the difference between a multi-collision and a first or second pre-image attack on a hash function?
What is the difference between a multi-collision in a hash function and a first or second preimage.
First preimage attacks: given a hash h, find a message m such that
hash(m) = h.
Second preimage ...
6
votes
2answers
152 views
How to find identical byte[]-objects in two arrays concurrently?
I'm trying to implement an collision attack on hashes (I'm visiting the course 'cryptography'). Therefore I have two arrays of hashes (= byte-sequences byte[]) and want to find hashes which are ...
6
votes
3answers
113 views
Recursive MD5 and probability of collision
I wonder if it is 'safe' to hash a bunch of MD5 hash values together to create a new hash or whether this will in any way increase the probability of collisions.
The background: I have a couple of ...
5
votes
4answers
171 views
512 bit hash vs 4 128bit hash
Interestingly I haven't found enough information regarding any test or experiment of collision chances of single 512bit hash like whirlpool versus concatenation of 4 128bit hashes like md5, sha1 etc.
...
5
votes
3answers
99 views
Will this hash function collide unusually frequently?
I had the following code to generate a hash of an object:
public int GetHashCode(MyType obj)
{
return (obj.Prop1.GetHashCode() + obj.Prop2.GetHashCode() + obj.Prop3.GetHashCode()).GetHashCode();
}
...
5
votes
5answers
400 views
Uniquely identifying URLs with one 64-bit number
This is basically a math problem, but very programing related: if I have 1 billion strings containing URLs, and I take the first 64 bits of the MD5 hash of each of them, what kind of collision ...
4
votes
1answer
105 views
Is this an appropriate use of python's built-in hash function?
I need to compare large chunks of data for equality, and I need to compare many per second, fast. Every object is guaranteed to be the same size, and it is possible/likely they may only be slightly ...
4
votes
3answers
797 views
Looking for an array (vs linked list) hashtable implementation in C
I'm looking for a hashtable implementation in C that stores its objects in (twodimensional) arrays rather than linked lists.
i.e. if a collision happens, the object that is causing the collision will ...
4
votes
5answers
351 views
Why isn't randomized probing more popular in hash table implementations?
According to various sources, such as Wikipedia and various .edu websites found by Google, the most common ways for a hash table to resolve collisions are linear or quadratic probing and chaining. ...
4
votes
6answers
1k views
What does it mean by “the hash table is open” in Java?
I was reading the Java api docs on Hashtable class and came across several questions. In the doc, it says "Note that the hash table is open: in the case of a "hash collision", a single bucket stores ...
3
votes
5answers
165 views
Unexpected collision with std::hash
I know hashing infinite number of string into 32b int must generate collision, but I expect from hashing function some nice distribution.
Isn't it weird that these 2 strings have the same hash?
...
3
votes
2answers
121 views
As of 2011, what hash algo is the most suitable for message digest?
I'm a bit conflicted with an answer when I google for this, as these algos are constantly improving and new exploits are being found and new issues come up all the time... a lot of advice on what algo ...
3
votes
3answers
521 views
Looking for a good 64 bit hash for file paths in UTF16
I have a Unicode / UTF-16 encoded path. the path delimiters is U+005C '\'.
The paths are null-terminated root relative windows file system paths, e.g. "\windows\system32\drivers\myDriver32.sys"
I ...
3
votes
5answers
1k views
CHECKSUM() collisions in SQL Server 2005
I've got a table of 5,651,744 rows, with a primary key made of 6 columns (int x 3, smallint, varchar(39), varchar(2)). I am looking to improve the performance with this table and another table which ...
2
votes
5answers
116 views
Why doesn't my HashTable allow key collisions?
I read that HashTable can map same key to multiple values. That's what collision is.
Now I run the program like this:
Dictionary<String,String> hTable = new Hashtable<String,String>();
...
2
votes
3answers
165 views
md5 hash collisions.
If counting from 1 to X, where X is the first number to have an md5 collision with a previous number, what number is X?
I want to know if I'm using md5 for serial numbers, how many units I can expect ...
2
votes
2answers
189 views
Collision Attacks, Message Digests and a Possible solution
I've been doing some preliminary research in the area of message digests. Specifically collision attacks of cryptographic hash functions such as MD5 and SHA-1, such as the Postscript example and X.509 ...
2
votes
0answers
128 views
md5 collision how is it possible?
i don't understand how one can create a rough Certificate just by making a MD5 collision. Even if you were able to find another string whose hash matches the original how would you sign it ? You do ...
2
votes
2answers
904 views
Open Addressing vs. Separate Chaining
Which hashmap collision handling scheme is better when the load factor is close to 1 to ensure minimum memory wastage?
I personally think the answer is open addressing with linear probing, because it ...
2
votes
2answers
270 views
A couple of questions about Hash Tables
I've been reading a lot about Hash Tables and how to implement on in C and I think I have almost all the concepts in my head so I can start to code my own, I just have a couple of questions that I ...
2
votes
1answer
209 views
How much more likely are hash collisions if I hash a bunch of hashes?
Say I'm using a hash to identify files, so I don't need it to be secure, I just need to minimize collisions. I was thinking that I could speed the hash up by running four hashes in parallel using SIMD ...
2
votes
4answers
200 views
Is a hash result ever the same as the source value?
This is more of a cryptography theory question, but is it possible that the result of a hash algorithm will ever be the same value as the source? For example, say I have a string:
...
2
votes
6answers
1k views
Purposely create two files to have the same hash?
If someone is purposely trying to modify two files to have the same hash, what are ways to stop them? Can md5 and sha1 prevent the majority case?
I was thinking of writing my own and I figure even if ...
1
vote
1answer
29 views
How to find a specific element in an array when using quadratic probing?
I have two inputs (example): "Smooth Criminal" and "Billie Jean", that return the same index key, when run through a hash function.
In the array[], i want to save the path to the songs MP3 file on my ...
1
vote
1answer
100 views
How was SHA-0 broken? - What is the significance of a mere handful of hash collisions?
I wanted to understand how the SHA0 hash function was broken. I understand that utilising the birthday problem/pigeon-hold principle, hash collision(s) were found. ...
1
vote
2answers
138 views
How to discover identical files without comparing them to eachother?
I am building a site where users can upload content. As always I aim for world dominance, so I would like to avoid storing the same file twice.
For instance, if a user tries to upload the same file ...
1
vote
2answers
3k views
Moving from Linear Probing to Quadratic Probing (hash collisons)
My current implementation of an Hash Table is using Linear Probing and now I want to move to Quadratic Probing (and later to chaining and maybe double hashing too). I've read a few articles, ...
0
votes
3answers
39 views
Hash Cryptographic Function Output Anomolies
Anyone know if MD5, Whirlpool, SHA[n], etc., have any "special" input that might get a hexdigest output to align into:
All numeric characters
All alpha characters
All of the same character/pattern ...
0
votes
3answers
73 views
How can i count the collisions in this hash function?
This is a prefix hashing function. i want to count the number of collisions in this method but i am not sure how to do it. It seems like it might be simple but i just cant think of a great way to do ...
0
votes
1answer
99 views
I'm using ELF Hash to write a specially tweaked version of hash map. Wanting to produce collisions
Can any one give an example of 2 strings, consisting of alphabetical characters only, that will produce the same hash value with ELFHash?
I need these to test my codes. But it doesn't seem like easy ...
0
votes
1answer
126 views
C++: proper use of HASH and Collision Techniques
Should there be a size limitation on how LARGE a Hash Table may be?
I'm a little baffled as I can see why creating too small of a Hash Table should be causing me issues? It appears that too large of ...
0
votes
4answers
275 views
HashMap collisions: is my code correct?
I want to have one DateWrapper - representing a date (built for Hibernate persistance, but this is another story) - at most existing at the same time for the same date.
I'm a bit confused about ...
0
votes
1answer
105 views
Confusion about linear probe method based Open Addressing in hashtables?
Suppose array index according to hashing function for string "temp" is 155 and location 155 is pre-occupied then location 156 is tried. Suppose location 156 is available, so this entry is saved in ...
0
votes
3answers
101 views
Image caching strategy
The Scenario
I am building a web application where reports can be generated on the fly (based on information retrieved from an SQL database). These reports will contain charts, which can also be ...
0
votes
1answer
164 views
Hash Table: Should I increase the element count on collisions?
Right now my hash tables count the number of every element inserted into the hash table. I use this count, with the total hash table size, to calculate the load factor and when it reaches like 70%, I ...
0
votes
4answers
390 views
Are hash collisions with different file sizes just as likely as same file size?
I'm hashing a large number of files, and to avoid hash collisions, I'm also storing a file's original size - that way, even if there's a hash collision, it's extremely unlikely that the file sizes ...
0
votes
4answers
2k views
HashMap collision
When there is a collision during a put in a HashMap is the map resized or is the entry added to a list in that particular bucket?
0
votes
2answers
247 views
How should I be handling checksum collisions in my application?
I have a part of my application that stores files. Because we could potentially be adding many of the same file, I am first keeping a hash of each file. If two files have the same hash, then we ...
-2
votes
2answers
47 views
What is the clash rate for md5? [closed]
what's the probability for the clash for the md5 algorithm. I believe it is extremely low.