0
votes
2answers
58 views
Boost Multi-Index with hashed_unique_index produces compiler error
Hello,
I learned in THIS THREAD how a hashed_unique<> index can be used with a composite_key using an int and a std::vector<int>. But unfortunately the following code …
3
votes
2answers
78 views
hmac-sha1 in ruby differs from C# HMACSHA1
I am trying to test the API from ankoder.com and have problem on the digest calculation for the authentication token . The sample is ruby while I am trying to call from C#. When I …
1
vote
1answer
37 views
How should I store a user’s LDAP password in a cookie?
So I have this black box authentication method, handed down to me from the accounts people, which basically amounts to ldap_bind($connection, $username, $password). But of course, …
0
votes
2answers
55 views
There any way to differentiate a md5 of a sha-1 ?
Hi, i want to know if exist a way to differentiate a md5 hashcode of a sha-1 hashcode?
For example:
d41d8cd98f00b204e9800998ecf8427e
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ho …
2
votes
1answer
51 views
How much more likely are hash collisions if I hash a bunch of hashes?
Say I'm using a hash to identify files, so I don't need it to be secure, I just need to minimize collisions. I was thinking that I could speed the hash up by running four hashes in …
0
votes
2answers
54 views
Is SHA512Managed considered the best one-way hash available in .NET 3.5 for security?
Three SHA512Managed related questions:
Is SHA512Managed considered the best one-way hash available in .NET 3.5 for security?
What Salt size should be used with SHA512Managed? Th …
1
vote
1answer
30 views
Needed an efficient way for search for the following specfic requirement
I have to search a given file name (let say Keyword) in a directory containing files. If there were only few keywords to be searched, I could have used regular search (like creati …
2
votes
4answers
120 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
268 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 …
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);
2
votes
1answer
92 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 …
0
votes
2answers
137 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
253 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
143 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 …
2
votes
1answer
107 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 …
