Tagged Questions
21
votes
13answers
25k views
What's the difference between SHA and MD5 (in PHP)?
When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?
10
votes
3answers
1k views
Is it safe to ignore the possibility of SHA collisions in practice?
Let's say we have a billion unique images, one megabyte each.
We calculate the SHA-256 hash for the contents of each file.
The possibility of collision depends on:
the number of files
the size of ...
8
votes
3answers
304 views
What is the SHA-256 hash of a single “1” bit?
The definition of SHA-256 appears to be such that the input consisting of a single "1" bit has a well-defined hash value, distinct from that of the "01" byte (since the padding is done based on ...
6
votes
3answers
232 views
How long can a hash left out in the open be considered safe?
If I were to leave a SHA2 family hash out on my website - how long would it be considered safe? How long would I have before I could be sure that someone would find a collision for it and know what ...
5
votes
2answers
322 views
Recommended # of iterations when using PKBDF2-SHA256?
I'm curious if anyone has any advice or points of reference when it comes to determining how many iterations is 'good enough' when using PBKDF2 (specifically with SHA-256). Certainly, 'good enough' is ...
5
votes
11answers
2k views
Is MD5 less secure than SHA et. al. in a practical sense?
I've seen a few questions and answers on SO suggesting that MD5 is less secure than something like SHA.
My question is, Is this worth worrying about in my situation?
Here's an example of how I'm ...
4
votes
4answers
549 views
MD5 and SHA-2 collisions in Python
I'm writing a simple MP3 cataloguer to keep track of which MP3's are on my various devices. I was planning on using MD5 or SHA2 keys to identify matching files even if they have been renamed/moved, ...
4
votes
3answers
791 views
Can you get this same Java SHA-1 in PHP please?
I find myself in a need to change website platforms from Java to PHP but I'd like to keep all my user's passwords...
I had this code do the password hashing prior to writting the hashed value as the ...
3
votes
2answers
271 views
Simple enquiry on hash algorithm
After reading the article from the link listed below :
http://news.ycombinator.com/item?id=910203
I am trying right now to prove and understand why the hash listed below is insecure and should not ...
3
votes
1answer
230 views
Small differences in SHA1 hashes
A project I am working on uses Apache Shiro as a security framework. Passwords are SHA1 hashed (no salt, no iterations). Login is SSL secured. However, the remaining part of the application is not SSL ...
3
votes
1answer
77 views
Alphanumeric (sha1) Semaphore in PHP?
PHP's "shm_get" function requires an integer semaphore key, which I realise to be a restriction of the underlying OS.
I am using the "sha1" function to hash some user input and using the hash to ...
3
votes
2answers
578 views
Hashing no longer works in .Net 4.0 despite MSDN workarounds
I have an existing app in production that uses SqlMembershipProvider and has a specified machine key:
<machineKey validationKey="..." decryptionKey="..."
validation="SHA1" ...
2
votes
1answer
37 views
Changing the hashing function on a pre-existing database
I'm doing a bit of reading on hashing for passwords. I've seen that SHA-256 > MD5.
This got me thinking about how an app may deal with changing from one hashing function to another. What happens if ...
2
votes
1answer
64 views
Encryption: do I need to salt the key when not even storing it at all?
I searched all over the Net, including here on SO: There is a lot of discussion on the need to salt passwords before hashing and storing them.
In case the password is used to compute a key used for ...
2
votes
2answers
705 views
How long to brute force a salted SHA-512 hash? (salt provided)
Here is the algorithm in Java:
public String getHash(String password, String salt) throws Exception {
String input = password + salt;
MessageDigest md = MessageDigest.getInstance(SHA-512);
...
2
votes
1answer
110 views
Does Size of Bitstring Matter in Hashing Functions?
I'm trying to create an implementation of PBKDF2 to generate a key to encrypt a file with AES-256, but I have a question about salt size. I plan to use SHA-256 and concatenate with the passphrase, so ...
2
votes
4answers
181 views
SHA hash function gives a negative output
I'm trying to implement DSA signature algorithm and I'm stuck on a problem. I'm using the java.security MessageDigest class, here's the code:
MessageDigest md;
md = ...
2
votes
3answers
643 views
Is it okay to truncate a SHA256 hash to 128 bits?
MD5 and SHA-1 hashes have weaknesses against collision attacks. SHA256 does not but it outputs 256 bits. Can I safely take the first or last 128 bits and use that as the hash? I know it will be weaker ...
1
vote
1answer
67 views
Should I encode the data before hashing it?
Should I encode the data before hashing it to avoid Invalid length for a Base-64 char array.
# my .cs :
Stream des = file.InputStream;
byte[] data = new byte[file.ContentLength];
des.Read(data, 0, ...
1
vote
1answer
100 views
How was SHA-0 broken? - What is the significance of a mere handful of hash collisions?
I wanted to understand how the SHA0 hash function was broken. I understand that utilising the birthday problem/pigeon-hold principle, hash collision(s) were found. ...
1
vote
1answer
452 views
hmac key and salt length
I'm using hmac sha1 to sign a userid which is passed to a third party service.
The same secret is used for all users and the salt is unique for each user.
token = userid : timestamp+2hours : ...
1
vote
1answer
52 views
How to compute a reasonable number of bits for a checksum?
I have around 1500 bytes of data that I want to construct a checksum for so that if the data gets corrupted the chances of the checksum still matching the data is less than say 1 in 10^15, i.e. a low ...
1
vote
4answers
420 views
When generating a SHA256 / 512 hash, is there a minimum 'safe' amount of data to hash?
I have heard that when creating a hash, it's possible that if small files or amounts of data are used, the resulting hash is more likely to suffer from a collision. If that is true, is there a minimum ...
1
vote
2answers
193 views
password storage in mysql for user content website
To store user passwords I am going to SHA 256 + salting. Just wanted to confirm if these are correct. Business requirement is password should be minimum 8 inputs and maximum 32 inputs. (any input is ...
1
vote
5answers
912 views
SHA-1 Hashes Mixed with Strings
I have to parse something like the following "some text <40 byte hash>" can i read this whole thing in to a string without corrupting 40 byte hash part?
The thing is hash is not going to be there ...
0
votes
0answers
51 views
Solr: Store SHA1-hashes efficient
I have to store, index and find a lot SHA1-Tokens in Solr.
Now I store them as 40-Chars-Hex-strings like 68ac906495480a3404beee4874ed853a037a7a8f. There are about 10,000+ unique SHA1-tokens in my ...
0
votes
4answers
372 views
SHA2 password hashing in java
I'm trying to hash some passwords with SHA2.
Where can I get a snippet of java code for make that?
I have seen that post but I have something missing:
SHA2 password storage with Java
Mac mac = ...
0
votes
1answer
158 views
Does truncating a sha-160 hash produce a reasonable hash?
I have a sha-160 computation that gives me a 160 bit hash of my data, but I expect this is way larger than necessary. So I'm thinking I could truncate the resulting hash down to say the low 64 bits ...
0
votes
1answer
89 views
Can the SHA-256 hash be derived from the SHA-512hash of the same data?
I am applying SHA-512 on data. Is it theoretically/practically possible to derive the SHA-256 hash for the original data from its SHA-512 hash?
0
votes
1answer
56 views
What is supposed to be an iteration technique?
I was asked at the coding theory course to implement a compression hash function and an iteration technique of my choice.
What is supposed to mean "an iteration technique" ?
I choosed SHA-1 for the ...
0
votes
2answers
187 views
How can I create the hash of a webpage in java?
I need to create the hash of a the html of a webpage (from its URL) using SHA1 or MD5 in java, but I don't know how to do it... can you help me?