Tagged Questions

0
votes
5answers
90 views

Anagram Hash Function

I know something like this has been asked before, but the answer was sort of side tracked. I want to develop a hash function which will take a word and spit out an address of an a …
2
votes
5answers
172 views

Why can’t I use the map function to create a good hash from a simple data file in Perl?

The post is updated. Please kindly jump to the Solution part, if you've already read the posted question. Thanks! Here's the minimized code to exhibit my problem: The input data …
3
votes
10answers
173 views

Can two different strings generate the same MD5 hash code?

For each of our binary assets we generate a MD5 hash. This is used to check whether a certain binary asset is already in our application. But is it possible that two different bina …
1
vote
3answers
39 views

Comparing ruby hashes

Hi I have two ruby hashes (which are essentially models) and am trying to find the differences between them, one is an old instance of an object where the other has new values ass …
2
votes
6answers
139 views

Should I use $_[0] or copy the argument list in Perl?

If I pass a hash to a sub: parse(\%data); Should I use a variable to $_[0] first or is it okay to keep accessing $_[0] whenever I want to get an element from the hash? clarifica …
6
votes
7answers
177 views

Is forcing complex passwords “more important” than salting?

I've spent the past 2 hours reading up on salting passwords, making sure that I understood the idea. I was hoping some of you could share your knowledge on my conclusions. Say th …
1
vote
3answers
112 views

A dictionary with values that are dictionaries: trying to sum across those keys in python

Data structure is a dictionary, each value is another dictionary, like: >>> from lib import schedule >>> schedule = schedule.Schedule() >>> game = sched …
0
votes
4answers
47 views

Check if the user changed data

When a user registers at our site we check the address with an address validation service. This service can return an address suggestion if the entered address is found but has som …
2
votes
4answers
70 views

hash[’key’] to hash.key in Ruby

I have a a hash foo = {'bar'=>'baz'} I would like to call foo.bar #=> 'baz' My motivation is rewriting an activerecord query into a raw sql query (using Model#find_by_sql …
1
vote
1answer
42 views

Making a sha1-hash of a row in Oracle

I'm having a problem with making a sha1-hash of a row in a select on an Oracle database. I've done it in MSSQL as follows: SELECT *,HASHBYTES('SHA1',CAST(ID as varchar(10)+ Text …
5
votes
7answers
157 views

What is hash exactly?

Hi, I am learning MD5. I found a term 'hash' in most description of MD5. I googled 'hash', but I could not find exact term of 'hash' in computer programming. Why are we using 'h …
3
votes
6answers
175 views

Java: Calculate SHA-256 hash of large file efficiently

I need to calculate a SHA-256 hash of large file (or portion of it). My implementation works fine, but its much slower than the C++'s CryptoPP calculation (25 Min. vs. 10 Min for ~ …
2
votes
2answers
59 views

How to use sha256 in php5.3.0

Hello, I'm using sha256 to encrypt the password. I can save the sha256 encrypted password in mysql. But i can't login with the same clause. Insert code: <?php error_reporting …
3
votes
3answers
54 views

Comprehensive information about hash salts

There are a lot of questions about salts and best practices, however most of them simply answer very specific questions about them. I have several questions which feed into one an …
0
votes
3answers
44 views

How do I convert a ruby hash to XML?

Here is the specific XML I ultimately need: <?xml version="1.0" encoding="UTF-8"?> <customer> <email>joe@example.com</email> <first_name>Joe</ …

1 2 3 4 5 37 next
15 30 50 per page