2
votes
4answers
112 views
Intentional Hashing Collisions
I'm trying to write some code that will do "fuzzy hashing". That is: I want several inputs to hash to the same output so that I can do searches etc quickly and easily. If A hashes …
6
votes
11answers
254 views
Storing encrypted passwords
My coworker and I are having a fist-fight civilized discussion over password security. Please help us resolve our differences.
One of us takes the viewpoint that:
Storing passwo …
2
votes
1answer
62 views
Best practices around generating OAuth tokens?
I realize that the OAuth spec doesn't specify anything about the origin of the ConsumerKey, ConsumerSecret, AccessToken, RequestToken, TokenSecret, or Verifier code, but I'm curiou …
1
vote
1answer
81 views
How are these 2 lines of code different?
Can someone tell me in really slow terms the difference between these 2 lines of PHP?
$hassh = base64_encode(sha1($word));
$hassh = hash(’sha1′, $word);
0
votes
2answers
93 views
How can I get an MD5 hash in ColdFusion?
I'm trying to get an MD5 hash of a value in ColdFusion. I tried this code using the Encrypt function1:
<cfscript>
val = 1117;
md5 = Encrypt(val, 0, "MD5", "Hex");
</cfscr …
8
votes
8answers
239 views
Good hash function for permutations?
I have got numbers from (usually in the range of 0 to 1000). An algorithm selects some numbers from this range (about 3 to 10 numbers). This selection is done quite often, and I ne …
1
vote
4answers
125 views
SHA512 vs. Blowfish and Bcrypt
I'm looking at hashing algorithms, but couldn't find an answer.
Bcrypt uses Blowfish
Blowfish is better than MD5
Q: but is Blowfish better than SHA512?
Thanks..
Update:
I …
1
vote
1answer
63 views
Can anybody explain the logic behind djb2 hash funcition.
Can anybody explain the logic behind the use of djb2 hash function as a good option for strings. The algorithm can be found at http://www.cse.yorku.ca/~oz/hash.html
Why is it that …
2
votes
6answers
258 views
How do I convert password hashing from MD5 to SHA?
I've got an old application that has user passwords stored in the database with an MD5 hash. I'd like to replace this with something in the SHA-2 family.
I've thought of two possi …
2
votes
6answers
94 views
Encoding patterns in a 2D space (matrix)
I have a 2D MxN grid (or matrix). The cells in the matrix may hold an integer. A cell with a non-zero integer is said to be populated. The set of populated cells in the matrix is k …
0
votes
6answers
102 views
Cumulative Hashes
I've read before here on SO that there are some hash algorithms (I think one of those is adler32) that support the following property:
adler32('abc'); // 123
adler32('def'); // 45 …
15
votes
9answers
653 views
Why should hash functions use a prime number modulus?
A long time ago, I bought a data structures book off the bargain table for $1.25. In it, the explanation for a hashing function said that it should ultimately mod by a prime numbe …
0
votes
8answers
384 views
How to decrypt md5 or sha1? (is it possible?) [closed]
Possible Duplicate:
Is it possible to decrypt md5 hashes?
Well, first of all, is it possible to decrypt md5 or sha1?
The reason why I need to decrypt is:
I have an appli …
3
votes
8answers
159 views
Determine Hash Algorithm
If I have both the initial key and the hash that was created, is there any way to determine the hash algorithm?
For example:
Key: higher
Hash: df072c8afcf2385b8d34aab3362020d0
Al …
0
votes
4answers
97 views
Does partial known plaintext weaken a hash?
This is a question about an authentication scheme.
Say I have a shared secret string S, and two computers, C1 and C2
Computer one (C1) sends a random string (R) to computer two …
