The hash-collision tag has no wiki summary.
8
votes
2answers
124 views
Understanding cyclic polynomial hash collisions
I have a code that uses a cyclic polynomial rolling hash (Buzhash) to compute hash values of n-grams of source code. If i use small hash values (7-8 bits) then there are some collisions i.e. different ...
0
votes
1answer
52 views
Hashed array linked list collision resolution error
This block of code reads a dictionary file and stores it in a hashed array. This hashing array uses linked list collision resolution. But, for some incomprehensible reason, the reading stops in the ...
0
votes
1answer
39 views
How is data retrieved from a HashTable in collision?
According to this, time complexity of search in a hashtable is O(1).
However if there is a collision, then obviously this should be O(1) + something.
My question is:
When you say
get(someKey)
...
0
votes
1answer
28 views
Collision rates for trimmed SHA1- hashes
With my webapp I'm storing cached files with a hash generated filename in various subdirectories to optimize performance levels. One way I know that I could improve performance also would be to ensure ...
1
vote
1answer
84 views
Probing hash tables
I am implementing a hash table for a project, using 3 different kinds of probing. Right now I'm working on linear.
For linear probing, I understand how the probing works, and my instructor implied he ...
1
vote
1answer
150 views
Reversing hash, Finding collision (XOR with sums and left/right shifts)
A ^ ( (A >> 2) + (A << 5) + C ) == B
How to find A if B is const and C is variable? (C can be changed if there is no solution with it)
A is DWORD, B is DWORD, C is BYTE != 0
Edit1: ...
1
vote
1answer
78 views
Is there more chance having collisions between GUID's or a SHA1 hashes of GUID's?
Is there more chance having collisions when betweens GUID's (128 bits) or SHA1 hashes of GUID's (160 bits) ? My opinion is there is less chance with a GUID (even if there is 32 bit less), because it ...
1
vote
1answer
63 views
What has the least collisions for a non unique str: md5 or sha1
I want to create a unique hash for a given string and I was wondering if there is a difference in duplicate hashes for md5 and sha1.
Lets for the sake of argument assume the following code:
foo = ...
0
votes
0answers
55 views
Does linear probing provides less collision than double probing?
I have an array, for example its size is 1381
Say i ll put nearly 1000 hashes to this array.
I will use 1000 random numbers as key.
I tried two methods to insert elements: double and linear probing.
...
1
vote
1answer
104 views
Horrific collisions of adler32 hash
When using adler32() as a hash function, one should expect rare collisions.
We can do the exact math of collisions probability, but roughly speaking,
since it is a 32-bits hash function, there ...
2
votes
3answers
98 views
Collision Checking in Hashing
I am having some understanding problem with Hashing concept as follows:
Suppose, I have implemented hash table(1-D array, say A[100]) having keys as numbers. I have one simple hash function H(Key) % ...
5
votes
2answers
143 views
Why does a HashTable store the hash value of the key in the table in java
I was going through Java's implementation of the put method for a hashtable and came across this :
// Makes sure the key is not already in the hashtable.
Entry tab[] = table;
int hash = ...
5
votes
2answers
310 views
Implementing hashtables in C++ (insertion and lazy deletion)
I am implementing a Hashtable class in C++.
The collision resolution method that I am using is linear probing with lazy deletion.
I have seen implementations of this but had a question with regards to ...
1
vote
9answers
180 views
Chaining in HashMap
Code:
public static void main(String[] args) {
Map<String,String> map= new HashMap<String,String>();
map.put("a", "s");
map.put("a", "v");
...
0
votes
1answer
210 views
Collision generators or Datasets for hash collisions (like MD5, SHA-1 …)
I'd like to test 3rd party (including "closed source") tools (like synchronization, de-duplication...) behaves in presence of files with same size and digest checksum (popular ones CRC32, MD5,SHA-1 ...
1
vote
2answers
199 views
Hashing image bytes with SHA-256 yields many random collisions, what am I doing wrong?
I'm using the SHA-256 algorithm to detect identical images in a database. Because we use a lot of different image formats I don't want to compute the hash directly on the file. Instead I want to ...
5
votes
2answers
153 views
Finding collisions in hash table
I was reviewing for my data structures final exam, and I came across a question in past year's final. Having worked on it for the past three hours, I still couldn't figure out a way to solve it, ...
15
votes
3answers
2k views
Hash collision in git
What would actually happen if I had a hash collision while using git?
E.g. I manage to commit two files with the same sha1 checksum,
would git notice it or corrupt one of the files?
Could git be ...
0
votes
1answer
182 views
One way hash with variable length alphanumeric output
I need to one way hash alphanumeric + special chars(ascii) strings of variable length (10-20 chars).
The output should be of variable length but max 25 chars long, alphanumeric and case insensitive.
...
2
votes
1answer
241 views
Creating unique integer/float hashs of a million short strings
Most applications, especially databases, can sort and filter by small integers or floats much faster than they can do string comparisons.
Therefore I'm wondering if there is a hashing function that ...
1
vote
2answers
311 views
how can there be same md5 value for two different length strings
I have an md5 function which i have confirmed to work well for both files and strings. But when i use it on variable sized chunks of very large files it generates md5 values which are the same but the ...
1
vote
3answers
431 views
How collision resistant are encryption algorithms?
How hard is it for a given ciphertext generated by a given (symmetric or asymmetric) encryption algorithm working on a plaintext/key pair, to find a different plaintext/key pair that yields the same ...
0
votes
2answers
301 views
What hash function is better?
I write my implementation of HashMap in Java. I use open addressing for collision resolution. For better key distribution I want use a nice hash function for int hashcode of key. I dont know what hash ...
-2
votes
2answers
657 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.
6
votes
2answers
215 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 ...
10
votes
1answer
724 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 ...
1
vote
1answer
79 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 ...
0
votes
3answers
65 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
206 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 ...
5
votes
5answers
1k 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?
...
5
votes
1answer
748 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 ...
7
votes
3answers
343 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
349 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.
...
2
votes
5answers
630 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>();
...
4
votes
3answers
1k 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
1answer
311 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. ...
5
votes
3answers
137 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();
}
...
0
votes
1answer
300 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 ...
4
votes
2answers
175 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 ...
0
votes
1answer
226 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 ...
1
vote
2answers
589 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 ...
2
votes
2answers
342 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 ...
1
vote
3answers
682 views
substr md5 collision
I need a 4-character hash. At the moment I am taking the first 4 characters of a md5() hash. I am hashing a string which is 80 characters long or less. Will this lead to collision? or, what is the ...
2
votes
0answers
199 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 ...
0
votes
4answers
420 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 ...
3
votes
2answers
3k 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 ...
6
votes
3answers
1k 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 ...
0
votes
1answer
153 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
168 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 ...
4
votes
3answers
1k 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 ...

