Tagged Questions

0
votes
2answers
66 views

Hash Object problem in C++

Hello, In some C++ program I have two classes - Abc and Xyz. The Abc class contains an integer member Foo, like in the following listing: class Abc { public: int Foo; Abc(int f) { Foo = f; …
0
votes
3answers
79 views

Restricting access to server to iPhone app

I'm building a client/server iPhone game, where I would like to keep third-party clients from accessing the server. This is for two reasons: first, my revenue model is to sell the client and give away …
0
votes
0answers
19 views

SCrypt implementation for Java?

The original SCrypt implementation is in C. Are there any known Java ports?
0
votes
5answers
71 views

Create your own hash in PHP ?

Well, I need to save images with unique filenames and store the file names in the database. I used to do MD5 hash and save the image with the filename of value obtained by hash. However I would like …
0
votes
3answers
24 views

How to implement session based “add to cart” function in Rails

Hi I have a problem implementing add to cart functionality in my rails e-commerce app. Here I am not talking about check out function. Just "add to cart". Items can be added to cart without requiring …
1
vote
2answers
55 views

SimHash implementation in Java?

Has anyone come across a simhash function implemented in Java? I've already searched for it, but couldn't find anything.
3
votes
2answers
96 views

How can I use dispatch tables in Perl? [closed]

Possible Duplicate: How do I implement dispatch tables in Perl? I have a hash table that contains commands such as int(rand()) etc. How do I execute those commands?
0
votes
2answers
70 views

Why is CakePHP hashing my password twice?

Hi, im Using CakePHPs standard Auth mechanism, but I have some problems with that. Everytime a user logges in the password got hashed twice. I have the Auth Component in the var $componets Array in …
0
votes
2answers
48 views

How should I be handling checksum collisions in my application?

I have a part of my application that stores files. Because we could potentially be adding many of the same file, I am first keeping a hash of each file. If two files have the same hash, then we …
1
vote
4answers
85 views

Do any common OS file systems use hashes to avoid storing the same content data more than once?

Many file storage systems use hashes to avoid duplication of the same file content data (among other reasons), e.g., Git and Dropbox both use SHA256. The file names and dates can be different, but as …
0
votes
4answers
35 views

Ruby Array Intersection, Hash.has_value? for intersection with array[i+1] based on hash values

I am trying to populate an array with an intersection of an array and hash based on hash values: array2 = ["hi","world","One"] Vals = {:one => "One", :two => "Two"} array2 = VALS.values & …
0
votes
4answers
40 views

Populate ruby Array1 with Array2 String element if and only if Array2 element matches Hash value(not key).

I have a ruby hash: VALS = { :one => "One", :two => "Two" } and an Array: array2 = ["hello", "world", "One"] Question: How can I populate a new array1 so that it only pulls in any values in …
12
votes
3answers
298 views

Hash table faster in C# than C++?

Here's a curiosity I've been investigating. The .NET Dictionary class performs ridiculously fast compared to the STL unordered_map in a test I keep running, and I can't figure out why. (0.5 seconds …
-4
votes
3answers
109 views

Programatically changing hash of a file without corrupting it

Does anyone have any info on changing the hash of a file without corrupting it? I read about appending a null byte to the end of the file, thus changing the MD5 without corrupting it. Anyone have any …
0
votes
2answers
37 views

Turn of Cakephp Auth password hashing.

I am upgrading a cakephp app at my new job from l.1 to 1.2. I am replacing the homegrown 1.1 authorization code with the great Auth component. The problem is that the passwords are not hashed in the …

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