0
votes
3answers
22 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 …
0
votes
2answers
65 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
1answer
42 views
How does this PHP nonce library work?
From http://fullthrottledevelopment.com/php-nonce-library#download, there is a PHP nonce library, but there are a few things that I don't know understand. The first one is that it reminds us to set a …
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
5answers
68 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
0answers
18 views
SCrypt implementation for Java?
The original SCrypt implementation is in C. Are there any known Java ports?
14
votes
15answers
2k views
Decode email address from Gravatar hash?
I suppose, Gravatar generates the image from email address. If so, the reverse should be possible. How difficult would be to get the email associated with the image? Isnt it a potential spam threat?
…
7
votes
7answers
198 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 the salts on a system …
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 & …
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
95 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?
1
vote
1answer
58 views
HMAC (hash-based message authentication code, aka data signing) in Mathematica
It seems there's an implementation of HMAC in every language under the sun. (See below.)
And the algorithm is quite straightforward:
http://en.wikipedia.org/wiki/HMAC
Has anyone implemented it in …
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
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 …
6
votes
11answers
2k views
What’s the difference between SHA and MD5 (in PHP)?
When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?
