Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
8
votes
6answers
712 views

What are the important points about cryptographic hash functions?

I was reading this question on MD5 hash values and the accepted answer confuses me. One of the main properties, as I understand it, of a cryptopgraphic hash function is that it is infeasible to find ...
7
votes
4answers
3k views

Hash function for a pair of long long?

I need to map a pair of long long to a double, but I'm not sure what hash function to use. Each pair may consist of any two numbers, although in practice they will usually be numbers between 0 and ...
6
votes
3answers
192 views

Idea for keep information about visited states

I making now 15-puzzle solver (in c++), but instead of only 15-puzzle, my program must to solve also 3x4 puzzles, 8x8 puzzles, etc... - > X x Y puzzles. I must somehow keep information about visited ...
6
votes
4answers
488 views

Hash function for floats

I'm currently implementing a hash table in C++ and I'm trying to make a hash function for floats... I was going to treat floats as integers by padding the decimal numbers, but then I realized that I ...
5
votes
2answers
180 views

Are there no specializations of std::hash for standard containers?

I just found myself a little bit surprised being unable to simply use a std::unordered_set<std::array<int, 16> > test; because there does not seem to be a std::hash specialization for ...
5
votes
1answer
179 views

Is there any generic Hashable typeclass in Haskell? (a.k.a. “deriving (Hashable)”)

Has anyone written a generic function so that hash functions can be generated automatically for custom data types (using the deriving mechanism)? A few times, I've written the following kind of ...
5
votes
3answers
458 views

A good hash function to use in interviews for integer numbers, strings?

I have come across situations in an interview where I needed to use a hash function for integer numbers or for strings. In such situations which ones should we choose ? I've been wrong in these ...
5
votes
2answers
531 views

“Fastest” hash function implemented in Java, comparing part of file

I need to compare two different files of the instance "File" in Java and want to do this with a fast hash function. Idea: - Hashing the 20 first lines in File 1 - Hashing the 20 first lines in File 2 ...
3
votes
4answers
2k views

How does Java hashmap work?

As per my understanding I think: Its perfectly legal for two objects to have same hashcode. If two objects are equal (using equals ) then they have same hashcode. If two object are not equal then ...
3
votes
2answers
200 views

What are the vulnerabilities of MD5 and how can they be remedied? [closed]

Possible Duplicate: If MD5 is broken, what is a better solution? What are the vulnerabilities in MD5 and what are some of the remedies for it? Also, what ares some of the concerns that a ...
3
votes
3answers
377 views

Best hash function for mixed numeric and literal identifiers

For performance reasons I have a need to split a set of objects identified by a string into groups. Objects may be either identified by a number or by a string in prefixed (qualified) form with dots ...
2
votes
8answers
94 views

Hash function on list independant of order of items in it

I want to have a dictionary that assigns a value to a set of integers. For example key is [1 2 3] and value will have certain value. The thing is that [3 2 1] needs to be treated the same in my case ...
2
votes
2answers
277 views

unordered_map hash function c++

I need to define an unordered_map like this unordered_map<pair<int, int>, *Foo>, what is the syntax for defining and passing a hash and equal functions to this map? I've tried passing to ...
2
votes
1answer
82 views

Locality Preserving Hash Function

Is there any Java library that provides an implementation (or several) of a Locality Preserving Hash Function for Strings?
2
votes
4answers
691 views

Constructing a hash table/hash function

I would like to construct a hash table that looks up keys in sequences (strings) of bytes ranging from 1 to 15 bytes. I would like to store an integer value, so I imagine an array for hashing would ...
2
votes
2answers
674 views

Collision free hash function for a specific data structure

Is it possible to create collision free hash function for a data structure with specific properties. The datastructure is int[][][] It contains no duplicates The range of integers that are contained ...
2
votes
2answers
1k views

Dynamic perfect hashing and universal hash functions - explanation please?

So I'm reading up about hash tables, hash functions etc. I was intrigued to read on wikipedia about how "dynamic perfect hashing" involves using a second hash table as the data structure to store ...
1
vote
1answer
47 views

Understanding hashing passwords in Java by MessageDigest

I'm creating a simple web application and want to store hashed passwords into a database. I need the hash function for the authentication token too (concatenating the user name and the date and send ...
1
vote
2answers
49 views

many to one mapping Hash Function

I don't know the actual mathematical term (many to one mapping is the terminology i've used) This is my requirement: hash_code = hash_function(element 1, element 2, ...... element n) i should be ...
1
vote
1answer
106 views

assembly conversion to basm

I'm trying to convert the CrapWOW Hash from http://www.team5150.com/~andrew/noncryptohashzoo/CrapWow.html to delphi or rather to basm. My asm skills are very limited, but i thought it wouldn't be too ...
1
vote
1answer
204 views

Is there a perfect hash function for the combined input sets of IMEI numbers and MAC addresses? (C implementation)

I'm looking for a hash function that I can use to give uniform unique IDs to devices that connect to our network either using a GSM modem or an ethernet connection. So for any given device I have ...
1
vote
2answers
80 views

SHA1 Hash algorithm issues

I'm attempting to store a user's password in my program, but I don't want to store it in plain text. Therefore, I'm hashing it and storing that instead, and when the user needs to enter his password ...
1
vote
2answers
162 views

C++: shared_ptr as unordered_set's key

Consider the following code #include <boost/unordered_set.hpp> #include <boost/shared_ptr.hpp> #include <boost/make_shared.hpp> int main() { boost::unordered_set<int> s; ...
1
vote
3answers
141 views

Side effects of PHP's serialize as hash function

I'm looking to create a sort of HashMap class in PHP. For the sake of being able to build upon PHP's associative array functionality, I have a hash function, which should be able to take any variable ...
1
vote
2answers
477 views

what hash function is being used by boost c++ unordered_map?

what hash function is being used by boost c++ unordered_map ? I meant what kind of hash algorithms being used by boost::hash, for example template<> struct hash; Thanks
1
vote
2answers
260 views

Collate Hash Function

In the local object there is a collate facet. The collate facet has a hash method that returns a long. http://www.cplusplus.com/reference/std/locale/collate/hash/ Two questions: Does anybody know ...
1
vote
4answers
280 views

What is the diff between the hashing methods of php?

What is the difference between the hashing methods available in php md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 ...
1
vote
4answers
305 views

What is a hash function in java?

I have check out this Wikipedia page on it, but I still don't understand it. Can someone please help my dim-witted mind to understand the concepts of hashing, hashtable/hashmap, and hash functions? ...
1
vote
3answers
2k views

SSL encrpytion, SHA1 and SHA2

I am trying to implement SHA2 encryption instead SHA1. For this, I know that bit number between these two hash algorithms are different and it confuses me. How can this be achieved and at what ...
1
vote
14answers
2k views

Why are the hash codes generated by this function not unique?

I'm testing the VB function below that I got from a Google search. I plan to use it to generate hash codes for quick string comparison. However, there are occasions in which two different strings ...
0
votes
2answers
73 views

good hash function

I have been failing to understand the design of hash functions. I was going through an example. As you can see in the function comments, why should you choose 31 as the number to be multiplied. How ...
0
votes
1answer
100 views

Why Does a Bloom Filter Need Multiple Hash Functions?

I don't really understand why a bloom filter requires multiple hash functions (say, SHA and MD5). Why not just make a bigger SHA hash, for example, and then break it up into multiple parts and treat ...
0
votes
2answers
68 views

Which hashing algorithm was used for that String?

Can someone figure out the hash function that was used for these strings/hashes? password = CD0BF1EDA239C2E661334B490FB91CF1D7202F1C admin = 72B137806AAD53F4EAA41A4F16D1BEE768F7271A fyi: left side ...
0
votes
2answers
1k views

MySQL Check if username and password matches in Database

I have a form which has a textbox with the name attribute username and another one with the name attribute password. I also have a database with columns called user and pass. When my users signed up ...
0
votes
2answers
201 views

How can I map URLs to filenames with perl?

In a simple webapp I need to map URLs to filenames or filepaths. This app has a requirement that it can depend only on modules in the core Perl ditribution (5.6.0 and later). The problem is that ...