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.
-1
votes
1answer
30 views
Hashing an array of {a, b, c, d, e}
I need a hash function for a table[49] of {a, b, c, d, e}. In my table there will be exactly one 'e', one 'd', 6 'a', 6 'b' and rest will be filled with 'c'. I have seen numerous hashcodes, but I'm ...
0
votes
0answers
15 views
Is this correct for using hash and bcrypt on a password being POST-ed from a form?
My database when queried is showing null for the password field, is that normal for a hashed password. This is my code for the use of bcrypt.
<code>
exports.signUpUser = function (req, res, ...
0
votes
0answers
25 views
getting the top 50 numbers from a hash table with chaining collision resolution
so I have an array of nodes in the hash table and every node has a pointer to a next pointer in case there is collision. Now I'm trying to get the top 50 elements with highest count. using priority ...
0
votes
1answer
23 views
Understanding PHP crypt() return value
PHP crypt function is said to have this return value:
"Returns the hashed string or a string that is shorter than 13 characters and is
guaranteed to differ from the salt on failure."
I don't ...
0
votes
2answers
45 views
Size of an hashed array with pseudorandom hashing method
I'm confused of setting a good and efficient size of an hashed array. The book that i'm reading says that the load factor should be around 75% to be a good hashed array. But I have no idea how to ...
0
votes
1answer
27 views
Storing passwords in a Hashed format
In my application, users create data then use their secret key to calculate a hash. The data with the appended hash are sent to the server.
The server recalculates the hash using the private key it ...
1
vote
6answers
65 views
Ruby join a hash and a list +remaining values
I want to join a hash on its keys and a list
Example:
a={"aa"=>[1, 2], "bbb"=>[3, 4, 5], "c"=>[6, 7, 8], "hh"=>[9]}
b=["aa","c"]
(the elements of b list will ALWAYS present in a hash)
...
0
votes
2answers
57 views
Why do we need to pop Hash to create this calculate method?
def add(*numbers)
numbers.inject(0) { |sum, number| sum + number }
end
def subtract(*numbers)
sum = numbers.shift
numbers.inject(sum) { |sum, number| sum - number }
end
def ...
0
votes
2answers
61 views
“Official statement” on php.net : CRYPT_BLOWFISH is strongest hash algorithm. Why? [closed]
According to the [early] doc pages of the new PHP 5.5 password hashing/encrypting API the used algorithm CRYPT_BLOWFISH is "strongest algorithm currently supported by PHP" (please do a full text ...
0
votes
0answers
21 views
Drupal password hash not matching existing hash
When logging into a Drupal instance (Drupal 7.22) I've set up, I keep getting a invalid username/password error. I've tried changing passwords and other users to no avail.
What's especially odd is ...
0
votes
3answers
50 views
creating a simple one-way hash
Are there any standard hash functions/methods that maps an arbitrary 9 digit integer into another (unique) 9 digit integer, such that it is somewhat difficult to map back (without using brute force).
...
0
votes
0answers
9 views
Translating Savon SOAP request from Ruby to Python
I'm using xignite's API to call a list of securities. They give examples in a few languages (including the Ruby example below) but I need to do it in Python.
How would I reproduce this SOAP request ...
0
votes
3answers
50 views
Same Long string(Varchar(max)) get different hash value
SELECT HASHBYTES('SHA1',Script)
FROM dbo.Sync
WHERE roadmapKeY = 'CE9AD1B3-171D-4508-BB06-750A93EE7848'
AND VERSION = 18
SELECT HASHBYTES('SHA1',Script)
FROM dbo.Sync
WHERE roadmapKeY = ...
0
votes
3answers
44 views
Alphabetizing a list of hash keys in perl?
I want to make an array that stores an alphabetized list of hash keys. I tried this method:
@sorted = sort { $hash{$a} cmp $hash{$b} } keys %hash;
...But it turns out this returns a list of hash ...
0
votes
1answer
10 views
Identical Phpass code returning different results with CheckPassword
I am using Phpass to hash the passwords of my users. The creation and hashing of the password - fine. The checking of the password when logging in - fine.
The checking of the old password when ...
0
votes
1answer
61 views
List comparision in perl
The command "sh value" gives
A: optimal
size: 100
feature : ON
Minimum size: 0
CPU load: 100%
Done
The name-value pairs written above are parameters wit default values.
I want to compare the ...
0
votes
0answers
45 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
33 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
79 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
15 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
97 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
46 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
20 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
32 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
48 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
47 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
92 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
21 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
43 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
42 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
11 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
1answer
16 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
26 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
27 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
47 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
45 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
14 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
42 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
53 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
43 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
43 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
42 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
29 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 ...



