A hash function is an algorithm that maps large data sets of keys to smaller data sets of a fixed length. Hash functions are not reversible.

learn more… | top users | synonyms

0
votes
3answers
53 views

Hash function for hash table with strings and integers as keys

i am in search for a good Hash function which i can use in Hash table implementation. The thing is that i want to give both strings and integers as parameters(keys) in my hash function. i have a txt ...
1
vote
3answers
78 views

Obtaining a k-wise independent hash function

I need to use a hash function which belongs to a family of k-wise independent hash functions. Any pointers on any library or toolkit in C, C++ or python which can generate a set of k-wise independent ...
0
votes
1answer
30 views

Collision Hash Function

Hi all I have a big problem with my hash function. I try to explain my problem : I have a set of char and I want to do an hash function because I want to change the set with hash set, for each char ...
1
vote
2answers
79 views

Hash Function not strictly dependent on size of string key

I am making a hash table and I need to make a hash function that is not only dependent on the size of the string key, as the periodic table elements have only 1 to 3 characters. How can I make a hash ...
4
votes
4answers
162 views

Recommendation for hashing/encryption technique

Description of problem: I'm in the process of working with a highly sensitive data-set that contains the people's phone number information as one of the columns. I need to apply (encryption/hash ...
0
votes
1answer
27 views

Proof of calculating Minhash

I'm reading about MinHash technique to estimate the similarity between 2 sets: Given set A and B, h is the hash function and hmin(S) is the minimum hash of set S, i.e. hmin(S)=min(h(s)) for s in S. We ...
0
votes
1answer
29 views

Is there a 64 bit version of boost::hash_value

As it looks here boost::hash_value always returns a size_t value. Does boost have a 64 bit hash function as well?
0
votes
0answers
75 views

Boost::hash_range vs. Java's hash code

I'm looking for an efficient hash algorithm with which I can have 64-bit values represent strings in a databse. Following Mark Adler's answer+comments here it seems that using a cryptographical hash ...
0
votes
1answer
125 views

C++: Why isn't my hash function for the unordered_map<char*, vector<int>> working?

I want to create an unordered_map which has a char* as a key and a vector<int> as a value. I learned from previous questions that no hash function for char* is provided by the STL. I took the ...
0
votes
1answer
73 views

Load a javascript file over HTTPS in order to pass a secret hash function

I am implementing a system where the log in process is over HTTPS and rest of the site is over HTTP. I was looking for a way to authenticate HTTP requests while preventing potential reply/hijack ...
1
vote
2answers
84 views

How do I implement the fnv1a hash function on a string which is in a struct?

I'm trying to implement the fnv1a hash function on all the words from a dictionary (so I can access them quickly later on). This is the fnv1a hash function: int fnv1a(unsigned char byte, uint32_t ...
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 ...
0
votes
2answers
50 views

Why is BlockCopy() used within hash functions?

Trying to understand hashing functions and I can't seem to work out why BlockCopy is used within it. public static string HashPassword(string password) { if (password == null) ...
0
votes
1answer
108 views

Which algorithm is used to hash the password here?

I'm using the Webmatrix.WebData.Security library to control the login/register functionality of my site. The CreateUserAndAccount() method hashes the password the user gives and stores it within the ...
1
vote
1answer
62 views

Is this function preimage resistant?

One of the ways of testing strength of PRNG functions is to design tests that distinguish PRNG outputs from random strings: we are given a box which outputs PRNG(u) for some u or a random string. We ...
1
vote
2answers
144 views

Performance comparison of sort vs custom hash function for strings in Python

I'm comparing the performance of sort vs a custom hash function for strings of varying length and the results are a bit surprising. I expected the function prime_hash (and especially prime_hash2) in ...
1
vote
1answer
93 views

A/B Test partition function

I want to partition my users into several groups to run an A/B test. The usual approach is to randomly assign each user to a variant and store the relation until the end of the A/B test. But that ...
0
votes
3answers
250 views

What's a good hash function for struct with 3 unsigned chars and an int, for unordered_map?

I just want to use a unordered_map with my struct as key, since I dont need any ordering..but I just cant find myself with all that hash stuff.. As a side relevant question..When ppl compare ...
0
votes
2answers
430 views

What hash function used in dictionary (hash_table)?

I'm writting interpreter of language. There is problem: I want to create type-dictionary, where you can put value of any type by index, that value of any type (simple[int,float,string] or ...
5
votes
2answers
447 views

Generating k pairwise independent hash functions

I'm trying to implement a Count-Min Sketch algorithm in Scala, and so I need to generate k pairwise independent hash functions. This is a lower-level than anything I've ever programmed before, and I ...
2
votes
2answers
70 views

What does variable name has to do with hash functions?

Properties of a good hash function from MIT recitation: satisfies (approximately) the assumption of simple uniform hashing: each key is equally likely to hash to any of the m slots. The hash ...
0
votes
2answers
136 views

Hash code for expandable class (future proof)

Since I don't have any great skills in math, I ask you if there exists any algorithm that I should use for a class which probably will change in the future. Consider following scenario: Class ...
0
votes
0answers
59 views

MASH-2 hash function

We have taken the MASH-2 hash function in a college course, and in the exam we are confronted with questions to calculate something like this ((62500)^257)) mod (238194151) using only a scientific ...
0
votes
0answers
31 views

The origine of SHA-1 constants [duplicate]

Possible Duplicate: Significance of Hex numbers specified in RFC 3174 (SHA-1) I'd like to know the origins of the constants used in the hashing algorithms SHA-1. I looked in the ...
3
votes
4answers
352 views

how to implement hash function `h(k) = (A·k mod 2^w) >> (w – r)` in Java

IMPORTANT NOTICE: This is not a discussion thread for people to give me their opinion about hashing. I just need to know how to make the given function work in java -- an example would be best. ...
2
votes
2answers
386 views

Similarity Hash function(simhash)

I have a problem with using hash function. I have to assign some number(128 bit or 64 bit) with every word in the document. So, the hash value of "similarity" must be near with "similar". That means, ...
3
votes
3answers
415 views

Java Fastest Hash Function

I have a Boolean string (like "01100..001") of length 128 characters (means 128 number of 0/1). I am searching for an efficient (fast) hash function in Java, which produce a much lower representation ...
1
vote
1answer
177 views

How to reuse hashing function of string class for custom class in unordered map?

I'm defining an unordered_map in C++ like the following: unordered_map<CustomClass, int, CustomClassHash, CustomClassEq> myMap; Assume I have been able to successfully define CustomClassEq. I ...
2
votes
2answers
1k views

Good hash function for ip addresses and remote ports

I'm writing a peer to peer application and I need a hash function for storing IP/port pairs in a java hashset. Rather than re-invent the wheel I wondered if there are already solutions out there but ...
2
votes
1answer
475 views

C++11 Hash function for any enum type

I am writing a hash function for my object. I already can hash containers, and combine hashes, thanks to Generic Hash function for all STL-containers. But my classes also have enums. Of course I can ...
3
votes
1answer
192 views

Hash function for colors in Java

I need to represent a series of elements through time. For designing purposes each of them should have a color to make it simplier to identify each one at a glance. The point is that color each elemnt ...
1
vote
2answers
317 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 ...
1
vote
1answer
359 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
247 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 ...
2
votes
2answers
305 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 ...
2
votes
8answers
182 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 ...
10
votes
2answers
779 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 ...
3
votes
2answers
5k 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 ...
3
votes
1answer
205 views

Locality Preserving Hash Function

Is there any Java library that provides an implementation (or several) of a Locality Preserving Hash Function for Strings?
1
vote
1answer
963 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
332 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 ...
0
votes
1answer
311 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 ...
19
votes
5answers
20k 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 ...
2
votes
3answers
924 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; ...
5
votes
1answer
321 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
2k 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 ...
6
votes
3answers
309 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
2answers
2k 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 ...
0
votes
1answer
112 views

Which hashing algorithm was used for that String? [closed]

Can someone figure out the hash function that was used for these strings/hashes? password = CD0BF1EDA239C2E661334B490FB91CF1D7202F1C admin = 72B137806AAD53F4EAA41A4F16D1BEE768F7271A fyi: left side ...
1
vote
3answers
324 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 2