3
votes
7answers
160 views
How to convert an 18 Character String into a Unique ID ?
Hi,
I have an 18 Character String that I need to convert into a unique long (in Java).
A sample String would be: AAA2aNAAAAAAADnAAA
My String is actually an Oracle ROWID, so it can be broken down if …
3
votes
4answers
117 views
Which hash to use for file uniqueness in Java
I'm trying to keep track of a set of files, which may have the same name and metadata. I'd like to use a hash to differentiate and use it as a unique ID, but I'm not sure which one to use? The files …
0
votes
2answers
64 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 produces quite an …
1
vote
1answer
43 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, I want my users to …
3
votes
2answers
99 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 compare the digest …
0
votes
2answers
56 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
How i could to know …
2
votes
1answer
54 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 parallel using SIMD …
1
vote
1answer
32 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 creating an array of file …
0
votes
2answers
66 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? The application is for …
2
votes
4answers
123 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 to 1 and C hashes to …
2
votes
1answer
115 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 curious if there are any …
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
148 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");
</cfscript>
But I get …
6
votes
11answers
276 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 passwords encrypted using …
2
votes
1answer
130 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 5381 and 33 hold …
