1
vote
13answers
659 views
+350
Hashing Multiple Files
Latest Update:
I've got a complete BASH Script as per the spec now.
(extra Thanks to Gordon Davisson and Peter Cordes)
A Perl solution has been provided by Peter Cordes
A …
2
votes
5answers
113 views
What is the purpose of the “salt” when hashing?
Ok, I’m trying to understand the reason to use salt.
When a user registers I generate a unique salt for him/her that I store in DB. Then I hash it and the password with SHA1. And when he/she is …
20
votes
7answers
1k views
The necessity of hiding the salt for a hash
At work we have two competing theories for salts. The products I work on use something like a user name or phone number to salt the hash. Essentially something that is different for each user but is …
1
vote
2answers
40 views
Creating a “true” HashMap implementation with Object Equality in ActionScript 3
I've been spending some of my spare time working a set of collections for ActionScript 3 but I've hit a pretty serious roadblock thanks for the way ActionScript 3 handles equality checks inside …
1
vote
1answer
92 views
Calculating SHA1 of a file
I'm trying to calculate the SHA-1 value of a file.
I've fabricated this script:
def hashfile(filepath):
sha1 = hashlib.sha1()
f = open(filepath, 'rb')
try:
sha1.update(f.read())
…
1
vote
3answers
68 views
Probability of SHA1 collisions
Given a set of 100 different strings of equal length, how can you quantify the probability that a SHA1 digest collision for the strings is unlikely... ?
0
votes
8answers
151 views
Secure Password Hashing
I need to store a hash of a single password in a .Net WinForms application.
What's the most secure way to do this?
In particular:
Salt, HMAC, or both?
How much salt?
How many iterations?
What …
8
votes
9answers
770 views
Which hash function should I choose?
The .NET framework ships with 6 different hashing algorithms:
MD5: 16 bytes (Time to hash 500MB: 1462 ms)
SHA1: 20 bytes (1644 ms)
SHA256: 32 bytes (5618 ms)
SHA384: 48 bytes (3839 ms)
SHA512: 64 …
2
votes
1answer
30 views
Hash tables optimization
Hi
In several hash table implementations I've seen the usage of heuristics like "transpose" or "move to front" for items in a bucket.
What are the advantages of using such heuristics? I could't …
3
votes
7answers
170 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
131 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
72 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 …
3
votes
2answers
235 views
Does any published research indicate that preimage attacks on MD5 are imminent?
I keep on reading on SO that MD5 is broken, bust, obsolete and never to be used. That angers me.
The fact is that collision attacks on MD5 are now fairly easy. Some people have collision attacks …
1
vote
1answer
48 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
131 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 …
