A hash function is any well-defined procedure or mathematical function that converts a large amount of data into a small datum, usually a single integer.
0
votes
0answers
39 views
any hash table in C besides from search.h? [duplicate]
I'm searching hash table implementations in C, but the only one I could find was from search.h. It would be perfect if it allowed me to make more tables. Does someone know a hash implementation, like ...
0
votes
0answers
21 views
window.onhashchange is not always working
I have a problem with window.onhashchange and the back button in Firefox 21.
I coded a test page where a hash is added to the address when the user selects an element on the page:
ELEMENT.onclick ...
2
votes
3answers
68 views
How does this Hashing function from CryEngine work?
unsigned int HashString( const char *string ) {
const char* p;
unsigned hash = 40503;
for ( p = string; *p != '\0'; ++p ) {
hash += *p;
hash += ( hash << 10 );
...
0
votes
0answers
10 views
window.location.hash and animate on click
I have website scrolling from left to right heres some code
if (window.location.hash == "#portfolio") {
$('html, body').stop().animate({
scrollLeft: $("#portfolio").offset().left - ...
4
votes
7answers
83 views
How to return true if only one specific key in a hash has a true value (all the other values are false)
For instance:
options = { fight: true,
use_item: false,
run_away: false,
save_game: false }
I want a boolean expression that evaluates to true iff only :fight is true, and the rest are false (as ...
0
votes
1answer
29 views
converting a hours from a time stamp into a hash listing the hour and frequency in Ruby
Ok, so I'm pretty new at this, I hope I explain this correctly. I'm using Ruby, and I have a program which takes a CSV file and performs some various functions on it. What I'm concerned with here is ...
0
votes
1answer
16 views
How does John the Ripper work?
I am familiar with John the Ripper, nevertheless, I haven't found a source where I can familiarize myself with the theory behind the program. I know that by studying the code I can get to understand ...
0
votes
0answers
13 views
Multiple divs and window location hash
I am building a website and this is the method:
1) My #content div loads external html found in a folder.
2)This external html also has a div #info that loads other html files with the same ...
0
votes
0answers
30 views
Will git deal with the case where two different files happen to have same hash ID? [duplicate]
For two different files, is that possible "git hash-object" gives the same ID? people generally don't worried about it. So I am wondering if it would happen at all. If it does happen, how git will ...
1
vote
2answers
47 views
Split string into a hash?
I have the following example string:
"email=bob@example.com&user_id=13&last_seen=January 14, 2013"
And I need is converted to a hash:
{ :email=>bob@example.com, :user_id=>13, ...
2
votes
2answers
38 views
Hashing Sequences of Integers
I have to deal with sequences of numbers, where a sequence has the following properties:
The elements are integers,
the lengths of the sequences vary and is not fixed,
the integers have an upper ...
2
votes
5answers
86 views
Perl: Create a hash in which the key is an array, and the value is an array of arrays?
I'm trying to create a hash in which keys are contained in an array and values in an array of an array:
my @keys = (1,2,3,4,5);
my @value1 = (a,b,c,d,e);
my @value2 = (f,g,h,i,j);
my @value3 = ...
0
votes
2answers
20 views
How should I decode a long variable which is encoded by Hashing.murmur3_32()?
I got a String variable in a Java program, and I know it is generated by following code:
public static String code(String text) {
final byte[] bytes = text.getBytes();
HashCode hc = ...
0
votes
1answer
41 views
pure C generic bidirectional hashtable with specific requirements
I have to design and implement a data-structure, which is like bimap, bidimap or dualmap, i.e. hashtable in which values can be used to extract keys and of course in reverse direction.
Normally, it ...
2
votes
2answers
39 views
Hashing of keys with statements or functions as values?
Can Hash Values be associated with statements or functions?
Let's say I have a list of keys and I wish to look up the value of an item in the hash table. Corresponding to the key/value detected, can ...
0
votes
0answers
8 views
External hashing bucket concept
According what i understood is hash function will give bucket number and each bucket has number of block address which that hash function calculate.
but this picture shows each bucket number mapped ...
-4
votes
0answers
21 views
External hashing in database [closed]
What is the concept behind external hashing?
According what i understood is hash function will give bucket number and each bucket has number of block address which that hash function calculate.
but ...
-5
votes
1answer
42 views
Adding Variables to a Hash in Ruby [closed]
I needed to add a variable into a Hash. I was trying to do this:
actorsChickens = Hash.new
nicolasCage = gets.chomp # is a string
chickenCount = gets.chomp # is a string representing a number (i.e ...
0
votes
0answers
12 views
Resolving collisions at storing cookies in file system when file name is a hash
I preserve HTTP cookie using file name which is a hash calculated as
public int hashCode() {
int result = name != null ? name.hashCode() : 0;
result = 31 * result + (path != null ? ...
1
vote
0answers
15 views
Is there a simple hash function(for implementing in hardware) to map sparse automatons?
This is for a fpga implementation of a string matching DFA. Each state has a small number of possible next characters out of the possible alphabet size(256). Currently, for populating the state ...
1
vote
1answer
14 views
python redis client fails to get existing hash values using .hgetall(key)
I'm encountering a circumstance where a demonstrably known hash in db2 of our redis cache dies when being requested with .hgetall(key). I'm hoping for some insight! Thank you.
Right, so... first, a ...
0
votes
1answer
24 views
Sha512 Registration form
I've been working with the PHP Session login tutorial at:
http://www.wikihow.com/Create-a-Secure-Login-Script-in-PHP-and-MySQL
This seems to be a secure and good php solution for user management and ...
-2
votes
3answers
66 views
How would I access a key from a hash that is within an array that is within a text file in ruby?
I'm trying to create an if/else statement that compares a user's input against all the name keys within a hash that's stored with a text file. How would I write this?
user_accts is the array.
Update ...
-2
votes
1answer
24 views
Electronic signature
I was asked to code electronic signature for the form. But I can't understand a thing from the description. Is it my qualification or something is missing?
Here is description:
MAC008(x1, x2, …, xn) ...
0
votes
1answer
46 views
Convert hash of hash into Single hash
My code is this
@logs= {-1=>{""=>{:source=>1, :time=>0, :skipped=>0, :mysql=>0, :es=>1}}}
@logs.each_pair { |user_id , user_content|
user_content.each_pair { |kwd , ...
1
vote
2answers
42 views
Ruby hash.delete(:key) deleting copies and clones as well
From what I understand, when you set an object = to another, it will always be a reference, so we have methods like .dup and .clone to actually create a copy of an object and not a reference.
...
0
votes
0answers
21 views
core data memory leak basichash hashrehash whenever any value is changed
i have an app that is leaking memory whenever any value is edited (via tableview)
i believe it has something to do with the keyvalue observation and propogation.
a hash is computed based on the new ...
0
votes
0answers
9 views
Is there an issue with putting a longer input string to a hashing algorithm than the algorithm outputs?
Currently I'm designing a hashing system for user emails, but what happens if the user email is longer than the hash output. I usually use sha1 sha256 or sha512 if it makes a difference based on ...
-3
votes
3answers
40 views
Merge the data of two arrays of hashes based on values
I want to join two arrays. Both arrays contain hashes that have a single key in common: object_id.
data1 = [
{"pid"=>"126199850741820_2172905", "object_id"=>606621809366286, ...
-4
votes
4answers
52 views
Check if HashSet/HashMap contains Object [closed]
if I want to check if a certain Object of class MyClass is contained in an ArrayList or the like, I can just overwrite equals.
public boolean equals(Object o) {
.....
}
but what do I have to do ...
0
votes
1answer
42 views
what's 128bit md5 's clash rate on different count of files, such as 10 million or 50 million? [duplicate]
I want to use files' md5 as key to store mp3 files, but I'm afraid that different files have same md5. So I want to know what's 128bit md5 's clash rate on different count of files, such as 10 million ...
-2
votes
3answers
42 views
C Compilation error: request for member ___ in something not a structure or union
I'm currently trying to create a hash table of strings. However in my search function I've been running into an error: request for member _ in something not a structure or union.. again
/*search ...
0
votes
1answer
41 views
“Attribute was supposed to be a Hash, but was a String”
I'm having problems saving a hash in my Rails 3 application. I can save it OK when using the console - it just doesn't work when I submit the hash through a form.
This SO question addresses it but ...
0
votes
1answer
37 views
Hash set add and search functions don't work properly - c++
I'm trying to implement a hash set. But it seems that the search function and the add function don't work properly. The add function lets me add a Person(which has phoneNumber and name) but when two ...
-6
votes
1answer
28 views
how to decrypt this password hash? [closed]
i had googled a lot for decryption but it was useless can anyone please tell me which type of encryption is this and how to decrypt
0x010056049b0e92e4e85487c8a63385cdb89bdd66cb7f28cab34e
for more ...
1
vote
2answers
70 views
C error: request for member ___ in something not a structure or union
So the code is saying that List and size is not a structure?
typedef struct HashTable{
int size;
ListRef **List;
} hash;
typedef struct hash *hash_ref;
hash_ref *newHash(int size){
...
0
votes
2answers
29 views
Ruby 1.9+ hash syntax with numbers [duplicate]
How would I use Ruby 1.9 syntactic sugared hash key/value initialization with numbers?
for example, if I want
{ :00 => 4, :01 => 1, :02 => 3 }
I get an error with the following code
...
0
votes
2answers
80 views
Good hashCode() Implementation
The accepted answer in Hash Code implementation gives a seemingly good method for finding Hash Codes. But I'm new to Hash Codes, so I don't quite know what to do.
For 1), does it matter what nonzero ...
2
votes
2answers
81 views
Parsing a CSV file and Hashing
I am trying to parse a CSV file to read in all the other zip codes. I am trying to create a hash where each key is a zip code and the value is the number it appears in the file. Then I want to print ...
0
votes
1answer
29 views
Hash set function for hashing
I am trying to implement a hash set but I have some trouble for the hash function. I want to add in the set, persons that have name and phone number:
class Person{
string name;
long long int ...
-1
votes
2answers
36 views
Replacing SHA1 with BCRYPT [duplicate]
I have been looking into replacing SHA1 as the encryption of passwords with possibly bcrypt or something similar, and I cant seem to find a step-by-step, easy to follow tutorial for implementing this.
...
0
votes
0answers
20 views
Android app sending hashed password and salt to and from server
My android app takes plain text password, uses jasypt to hash it with randomly generated salt. I then send both the salt (make string out of salt byte array) and hashed password to server (REST) which ...
1
vote
1answer
51 views
Same hashing + encryption in different platforms generating unidentical values
I am writing some web-services for a social networking website. These web-services would be utilized by android for making android-app. As the person who designed the website is no longer under ...
0
votes
1answer
7 views
ActiveRecord test Greater/Lesser Than inside Hash Condition
The Question: Is it possible to test within a hashed condition if an attribute of a joined table is greater/lesser than a value
AN EXAMPLE: test if actors age is greater than ageVariable:
Is it ...
0
votes
3answers
45 views
Should I hash a password inside or outside of a class?
I have a class called User which stores user information. One field that is store while i am creating the account (it isn't stored in the class otherwise) is the hashed password.
The password is ...
0
votes
1answer
23 views
How would I correctly implement parcel/parcelable in a Hash of objects in Java/Android
I have the following classes: Experiment and Measurements. I pass a HashMap containing Experiment objects as a value, and their Experiment.getExperimentName as a key, between Android activities.
...
0
votes
0answers
17 views
JBoss salted DatabaseServerLoginModule on AS 7.1
I'm trying to set up a secure login for my application.
To achieve this I wanted to salt my hash and maybe use an iteration count.
The official forums don't seem to answer that so I was wondering how ...
2
votes
3answers
83 views
find unique values from a large file
I have a large file (say 10 terabytes) with stream of MD5 hashes (which contains duplicates), I am given a memory of 10MB(very limited) and unlimited hard disc space. Find all the unique ...
0
votes
2answers
48 views
Pull key value from an array of hashes?
I've got an array of hashes, like this:
[
{"name"=>"Bob Jones", "id"=>"100005913544738"},
{"name"=>"Jimmy Smith", "id"=>"100005934513815"},
{"name"=>"Abe Lincoln", ...
15
votes
2answers
314 views
How to hash long passwords (>72 characters) with blowfish
The last week I read a lot articles about password hashing and Blowfish seems to be (one of) the best hashing algorithm right now - but that's not the topic of this question!
The 72 character limit
...





