Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
9
votes
2answers
80 views

Reverse hash lookup query

i have an web service and one of the parameter our clients needs to use is a custom key. this key is a hash of sha1 eg: bce700635afccfd8690836f37e4b4e9cf46d9c08 then when the client call our web ...
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
231 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 ...
6
votes
4answers
3k views

Hashing in SHA512 using a salt? - Python

I have been looking through ths hashlib documentation but haven't found anything talking about using salt when hashing data. Help would be great.
6
votes
4answers
2k views

Delphi: How to calculate the SHA hash of a large file

Hi I need to generate a SHA over a 5 Gig file Do you know of a non string based Delphi library that can do this ?
5
votes
5answers
220 views

How to calculate sha256 faster in java?

I have found out that calculating sha256 in java is slow. For example, it is slower than python. I wrote two simple benchmarks that calculate sha256 of 1GB of zeroes. In both cases the result is the ...
5
votes
2answers
181 views

How does Git(Hub) handle possible collisions from short SHAs?

Both Git and GitHub display short versions of SHAs -- just the first 7 characters instead of all 40 -- and both Git and GitHub support taking these short SHAs as arguments. E.g. git show 962a9e8 ...
5
votes
1answer
540 views

Encrypting a file with a weak password, bcrypt or SHA-256 + AES-256?

I start with a weak password (8 lower case characters for ex) and a file. I need to encrypt that file using that password. Result has to be secure against known attacks. Approach 1: I could hash the ...
5
votes
2answers
321 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
2answers
2k views

Changing devise and rails 3 to use bcrypt instead of sha

I've got a rails 3 production app that uses devise to deal with authentication. I'd like to change to using bcrypt instead of sha on the app but I can't find any resources that explain the process of ...
5
votes
1answer
370 views

MessageDigest SHA-512 different than openssl

I can't figure out what I'm doing wrong here. I have the following code: byte[] digest = new byte[0]; MessageDigest md = null; try{ md = MessageDigest.getInstance( "SHA-512" ); } catch( ...
5
votes
7answers
3k views

How do I convert password hashing from MD5 to SHA?

I've got an old application that has user passwords stored in the database with an MD5 hash. I'd like to replace this with something in the SHA-2 family. I've thought of two possible ways to ...
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
1answer
134 views

Java: How to create SHA-1 for a file?

What is the best way to create a SHA-1 for a very large file in pure Java6? How to implement this method: public abstract String createSha1(java.io.File file);
4
votes
4answers
547 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
2answers
202 views

SHA256 security question

Having that the result for some string STR was: SHA256(STR)=3f7c54571faee024e3fd68603c5c95f6a4c8ef73a398840b974f3f57737a116f Would it be possible to get the result of SHA256(myOwnString+STR)? ('+' ...
4
votes
1answer
648 views

Android, calculating SHA-1 hash from file, fastest algorithm

I have a problem with SHA-1 performance on Android. In C# I get calculated hash in about 3s, same calculation for Android takes about 75s. I think the problem is in reading operation from file, but ...
4
votes
2answers
584 views

Problems with Python MD5, SHA512 (+salt) encryption

I'm trying to understand how does Linux encrypt our password on the etc/shadow file, so I've dont a new virtual 'test' user to make some test: user: newuser password: usrpw123 Generated salt: ...
4
votes
4answers
585 views

When should I use SHA-1 and when should I use SHA-2?

In my c# application, I'm using RSA to sign files before being uploaded on the database of my company by the person who is uploading and here I have to choose SHA-1 or SHA-2 for computing the hash. As ...
4
votes
3answers
790 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
1answer
213 views

Android SHA1 is painfully slow

Am I doing it wrong, or Android's JVM implementation of SHA1 is painfully slow? My code is below: in = new FileInputStream("/mnt/sdcard/200mb"); MessageDigest digester = ...
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
2answers
132 views

What is the maximum number of SHA-1 hashes?

Clearly since SHA-1 hashing produces 40 characters each time there is a finite number of possible hashes - does anyone know exactly how many?
3
votes
2answers
766 views

How can I calculate the SHA-256 hash of a string in Android?

I'm trying to get the SHA256 of a string in Android. Here is the PHP code that I want to match: echo bin2hex(mhash(MHASH_SHA256,"asdf")); //outputs ...
3
votes
3answers
88 views

Converting a unique seed string into a random, yet deterministic, float value in Ruby

I'm having a hard time with this, conceptually. Basically, I need to accept some arbitrary unique string, and be able to convert that to a normalized float value. What the output float value is ...
3
votes
1answer
229 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
6answers
110 views

Variable of unspecified type in C#?

Is it possible for me to declare a variable, without a type, then specify the type based on some conditions? For example, I want to create a SHA Hash object based what size the user would like to use: ...
3
votes
1answer
76 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
3answers
146 views

How to decrease the size of SHA1?

I have a problem, maybe a silly question, I want to store data in a database after I hash with the SHA1 algorithm. However, at a future time, the size in database will increase because size words in ...
3
votes
1answer
109 views

How do I convert the first 32 bits of the fractional part of a Float into a Word32?

Say I have a Float. I want the first 32 bits of the fractional part of this Float? Specifically, I am looking at getting this part of the sha256 pseudo-code working (from the wikipedia) # Note 1: All ...
3
votes
1answer
189 views

Where does Git store the SHA1 of the commit for a submodule?

I know that when you add a submodule to a git repository it tracks a particular commit of that submodule referenced by its sha1. I'm trying to find where this sha1 value is stored. The .gitmodules ...
3
votes
2answers
577 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" ...
3
votes
1answer
268 views

How detect a Git SHA ID in a text

A Git SHA ID looks like this one 351e11dac558a764ba83f89c6598151d2dbaf904, it is a long hex number. But how should it be detected in a text? Search for "words" which only contain 0-9,a-f and have a ...
2
votes
3answers
61 views

How do you use SHA256 to create a token of key,value pairs and a secret signature?

I want to validate some hidden input fields (to make sure they arent changed on submission) with the help of a sha-encoded string of the key value pairs of these hidden fields. I saw examples of this ...
2
votes
1answer
52 views

Converting Ruby SHA to javascript

I have this method on ruby which converts a string into a encrypted SHA code and I would like to know if it is somehow possible to achieve that using javascript? The fact is that I don't know exactly ...
2
votes
2answers
65 views

Hashing gone wrong

I'm using the same function to hash values for comparison during login as I am to hash the passwords when users register: Public Shared Function Compute(ByVal text As String, ByVal algorithm As ...
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
3answers
171 views

How do I SSHA1 in C/C++?

How do I calculate in C/C++ a salted SHA1 digest of a C-string (in my case a clear-text password)? I do not want to include some huge library to do that. All I need is an "easy" way to make a salted ...
2
votes
1answer
63 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
700 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
154 views

Where is the SALT attached to the password, AFTER or BEFORE the password?

When you are using GNU/Linux, the password are (mainly) encripted in MD5 and SHA The operative system attaches a SALT to this password before encrypting it to avoid dictionary attacs. My question is, ...
2
votes
2answers
73 views

What is SHA-2's role in internet security?

I'm doing some light and fun reading and I'd like to get some clarification, please. I know that SSL uses public-key cryptography and is the backbone behind the HTTPS connection. The encryption ...
2
votes
2answers
879 views

Using ruby to generate SHA512 crypt-style hashes formatted for /etc/shadow?

I want to generate SHA512 hashed passwords for inclusion directly into a /etc/shadow file for use with chef's user resource. Normally I'd go to the stdlib's Digest library for this, but it doesn't ...
2
votes
4answers
121 views

How do you detect a “word” on a line that contains both letters and numbers?

I need a regex that detects a "word" on a line that contains both letters and numbers and is a certain length, e.g. 812d555c726d10c77b05cd164705665a. The goal is to detect lines that contain sha1 ...
2
votes
3answers
191 views

Generating a pseudo-natural phrase from a big integer in a reversible way

I have a large and "unique" integer (actually a SHA1 hash). Note: While I'm talking here about SHA1 hashes, this is not a cryptography / security question! I'm not trying to break SHA1. Imagine a ...
2
votes
3answers
639 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 2 3