1
vote
6answers
55 views
What’s the point in providing an MD5 or SHA1 hash along with a downloadable executable?
I thought they were there for security; to check that the file hasn't been tampered with. But surely if someone is capable of modifying the file then they are also capable of modifying the page with …
1
vote
13answers
749 views
Hashing Multiple Files
Problem Specification:
Given a directory, I want to iterate through the directory and its non-hidden sub-directories,
and add a whirlpool hash into the non-hidden
file's names.
If the …
2
votes
5answers
119 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 …
1
vote
1answer
99 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
78 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... ?
1
vote
2answers
53 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 …
0
votes
8answers
158 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 …
2
votes
5answers
141 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
31 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 …
0
votes
3answers
112 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 …
3
votes
7answers
179 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
135 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 …
3
votes
2answers
148 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
78 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 …
6
votes
11answers
302 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 …
