Tagged Questions
In cryptography, SHA-1 is a cryptographic hash function designed by the National Security Agency (NSA) and published by the NIST as a U.S. Federal Information Processing Standard.
48
votes
8answers
5k views
Assigning Git SHA1's without Git
As I understand it when Git assigns a SHA1 hash to a file this SHA1 is unique to the file based on its contents.
As a result if a file moves from one repository to another the SHA1 for the file ...
27
votes
5answers
11k views
Storing SHA1 hash values in MySQL
I have a simple question which occured when I wanted to store the result of a SHA1 hash in a MySQL database:
How long should the VARCHAR field be in which I store the hash's result?
24
votes
5answers
3k views
Is SHA-1 secure for password storage?
Conclusion: SHA-1 is as safe as anything against preimage attacks, however it is easy to compute, which means it is easier to mount a bruteforce or dictionary attack. (The same is true for successors ...
19
votes
8answers
33k views
(PHP) SHA1 vs md5 vs SHA256: which to use for a PHP login?
I'm making a php login, and I'm trying to decide whether to use SHA1 or Md5, or SHA256 which I read about in another stackoverflow article. Are any of them more secure than others? For SHA1/256, do I ...
17
votes
5answers
5k views
How do you verify an RSA SHA1 signature in Python?
I've got a string, a signature, and a public key, and I want to verify the signature on the string. The key looks like this:
-----BEGIN PUBLIC KEY-----
...
17
votes
5answers
8k views
Is there an equivalent to SHA1() in MS-SQL?
Converting a couple stored procedures from MySQL to Microsoft SQL server. Everything is going well, except one procedure used the MySQL SHA1() function. I cannot seem to find an equivalent to this in ...
14
votes
5answers
977 views
Reproducable MD5/SHA1 on a rebuild of C# .exe
I'll give you a little bit of background first as to why I'm asking this question:
I am currently working in a stricly-regulated industry and as such our code is quite carefully looked-over by ...
14
votes
4answers
2k views
What are the chances that two messages have the same MD5 digest and the same SHA1 digest?
Given two different messages, A and B (maybe 20-80 characters of text, if size matters at all), what is the probability that the MD5 digest of A is the same as the MD5 digest of B and the SHA1 digest ...
14
votes
5answers
12k views
Objective-C sample code for HMAC-SHA1
I need to generate HMAC-SHA1 in Objective C. But i didnt find anything that works. I tried with CommonCrypto, using CCHMAC, but didnt works. I need to generate a hmac and after generate HOTP number.
...
14
votes
3answers
8k views
13
votes
3answers
1k views
How do I verify a DKIM signature in PHP?
I'll admit I'm not very adept at key verification. What I have is a script that downloads messages from a POP3 server, and I'm attempting to verify the DKIM signatures in PHP. I've already figured out ...
13
votes
4answers
5k views
C# SHA-1 vs. PHP SHA-1…Different Results?
Hey, I am trying to calculate a SHA-1 Hash from a string, but when I calculate the string using php's sha1 function I get something different than when I try it in C#. I need C# to calculate the same ...
12
votes
2answers
4k views
How do I do a SHA1 File Checksum in C#?
How do I use the SHA1CryptoServiceProvider() on a file to create a SHA1 Checksum of the file?
12
votes
3answers
14k views
Password hash function for Excel VBA
I need a function written in Excel VBA that will hash passwords using a standard algorithm such as SHA-1. Something with a simple interface like:
Public Function CreateHash(Value As String) As ...
11
votes
3answers
917 views
What hash algorithms are parallelizable? Optimizing the hashing of large files utilizing on multi-core CPUs
I'm interested in optimizing the hashing of some large files (optimizing wall clock time). The I/O has been optimized well enough already and the I/O device (local SSD) is only tapped at about 25% of ...
10
votes
9answers
444 views
Does sha-1 ever produce collisions for input messages less than 160bits?
I have a 128bit ID that I want to perform a one way hash on, but I don't want to ever get the same digest for an input message. Does anyone know if sha-1, or an alternative, is guaranteed not to ...
10
votes
6answers
790 views
Can SHA-1 algorithm be computed on a stream? With low memory footprint?
I am looking for a way to compute SHA-1 checksums of very large files without having to fully load them into memory at once.
I don't know the details of the SHA-1 implementation and therefore would ...
9
votes
3answers
4k views
How can I get the MD5 fingerprint from Java's keytool, not only SHA-1?
As I want to use Google maps in my application, I need the debug certificates' MD5 fingerprint. I tried following.:
(Here I copied the debug.keystore file from C:\Documents and ...
9
votes
2answers
569 views
Which git commands perform integrity checks?
Trying to determine how quickly a user would be warned of corruption in the object database with git-1.7.4.1, I pulled a one-bit switcheroo:
$ git init repo
Initialized empty Git repository in ...
9
votes
4answers
951 views
Is it possible to get identical SHA1 hash?
Given two different strings S1 and S2 (S1 != S2) is it possible that:
SHA1(S1) == SHA1(S2)
is True?
If yes - with what probability?
If not - why not?
Is there a upper bound on the length of a ...
9
votes
5answers
2k views
How to hash a large object (dataset) in Python?
I would like to calculate a hash of a Python class containing a dataset for Machine Learning. The hash is meant to be used for caching, so I was thinking of md5 or sha1.
The problem is that most of ...
9
votes
1answer
2k views
SHA1 hashes not matching between my Rails and Cocoa apps
I have a Cocoa app send some data along with a SHA1 hash of that data to a Rails app which verifies that the data and the hash match, but they do not.
To be sure I have logged hex versions of the ...
8
votes
4answers
561 views
A memory-efficient SHA1 implementation
I'm working with a very restrictive embedded processor, which only has 128 bytes of ram. I'd like to implement SHA1 on it. RFC3174 describes, in 'method 2', a way of implementing SHA1 that doesn't ...
8
votes
3answers
1k views
Python - Why ever use SHA1 when SHA512 is more secure?
I don't mean for this to be a debate, but I'm trying to understand the technical rationale behind why so many apps use SHA1, when SHA512 is more secure. Perhaps it's simply for backwards ...
8
votes
2answers
324 views
Is there any x for which SHA1(x) equals x?
Does |{ x | x = sha1(x)}| > 0 hold?
I'm looking for a proof or a strong argument against it.
8
votes
2answers
8k views
Java Compute SHA-1
I'm looking for a way of getting an SHA-1 checksum with a Java byte array as the message
Should I use a third party tool or is there something built in to the JVM that can help?
8
votes
5answers
1k views
How can I pass git SHA1 to compiler as definition using cmake?
In a Makefile this would be done with something like:
g++ -DGIT_SHA1="`git log -1 | head -n 1`" ...
This is very useful, because the binary knows exact commit SHA1 so it can dump it in case of ...
8
votes
3answers
3k views
Git File Integrity
Recently my main machine i use for development started overheating. I started to get 4 5 lockups per day. Everything freezes. All my projects are under version control using git. I remember watching ...
7
votes
5answers
350 views
It`s possible to break a sha1(md5('password')) password?
This is the question: It`s possible to break a sha1(md5('password')) password ?
Or how it`s better md5 in sha1 or sha1 in md5 ?
Thanks!
7
votes
4answers
320 views
How much can you truncate a SHA1 hash and be reasonably sure of having an unique ID?
I am making an application that stores documents and gives each one a UID based on a SHA1 digest of a few things including the timestamp. The digest has a lot of characters, and I want to allow users ...
7
votes
3answers
3k views
Extract the SHA1 hash from a torrent file
I've had a look around for the answer to this, but I only seem to be able to find software that does it for you. Does anybody know how to go about doing this in python?
7
votes
6answers
5k views
Is it possible to reverse a sha1?
Is it possible to reverse a sha1?
I'm thinking about using a sha1 to create a simple lightweight system to authenticate a small embedded system that communicates over a unencrypted connection.
Let's ...
7
votes
4answers
374 views
Can a SHA-1 hash be all-zeroes?
Is there any input that SHA-1 will compute to a hex value of fourty-zeros, i.e. "0000000000000000000000000000000000000000"?
6
votes
1answer
160 views
Return sha1() hash from couchdb
I have some data stored in CouchDb of the form key-value. Basically it a tuple with a value and salt. I have created a view that return these tuples and calculate the sha1() of the value + salt on the ...
6
votes
1answer
547 views
GPU MD5/SHA1 Hasher
I would like to make md5/sha1 hasher tool to calculate hash for large number of big files like movies. Basically this should be part of bigger project that will use that data to organize files.
I can ...
6
votes
8answers
2k views
Java calculate a sha1 of a String
Guys I'm storing the user password on the db as a sha1 hash.
Unfortunately I'm getting strange answers.
I'm storing the string as this:
MessageDigest cript = MessageDigest.getInstance("SHA-1");
...
6
votes
3answers
251 views
Is any substring of an encrypted hash (md5, sha1) more “random” than another?
Here's 3 example md5 hashes
$ md5 -s "1" && md5 -s "2" && md5 -s "3"
MD5 ("1") = c4ca4238a0b923820dcc509a6f75849b
MD5 ("2") = c81e728d9d4c2f636f067f89cc14862c
MD5 ("3") = ...
6
votes
4answers
2k views
Why is a SHA-1 Hash 40 characters long if it is only 160 bit?
The title of the question says it all. I have been researching SHA-1 and most places I see it being 40 Hex Characters long which to me is 640bit. Could it not be represented just as well with only 10 ...
6
votes
3answers
3k views
6
votes
4answers
2k views
Git - finding a filename from a SHA1
I added a file to the index with:
git add somefile.txt
I then got the SHA1 for this file with:
git hash-object somefile.txt
I now have a SHA1 and I would like to retrieve the filename of the ...
6
votes
2answers
655 views
Git - finding the SHA1 of an individual file in the index
I've added a file to the 'index' with:
git add myfile.java
How do I find out the SHA1 of this file?
5
votes
1answer
151 views
SHA1 in Haskell — something wrong with my implementation
Thought I'd try to implement SHA1 in Haskell myself. I came up with an implementation that compiles and returns the right answer for the null string (""), but nothing else. I can't figure out what ...
5
votes
1answer
2k views
google maps api for android, getting SHA1 cert instead of MD5
when i try to get the MD5 fingerprint using keytool, I get a SHA1 fingerprint instead and the google maps doesnt recognize it. How do I get the MD5 fingerprint?
5
votes
1answer
256 views
PKCS#7 SignedData and multiple digest algorithms
I'm investigating upgrading an application from SHA1 as the default PKCS#7 SignedData digest algorithm to stronger digests such as SHA256, in ways that preserve backwards compatibility for signature ...
5
votes
1answer
186 views
apparently same commits give different sha1, why?
After re-write of a subtree history from a repository with a script of mine, I compared it with what would do a git filter-branch ... on that same subtree. I see that initial commits have different ...
5
votes
3answers
132 views
Is it better to salt the string when creating a secure hash?
I'm not really strong at cryptography, so there is my question.
Our application — forum — sends our users notifications of new messages, if they opted for it. In the email there should be a link to ...
5
votes
4answers
340 views
Difference in SHA1 in .NET and MySQL
I have a couple different bits of code but the short story is I insert some passwords into a MySQL database using SHA1 and also compute SHA1 hashes into .NET and they are not matching. I think this is ...
5
votes
3answers
235 views
Can someone explain how salts help when storing hashed passwords?
I am having difficulty understanding how a salt which is appended to a hash helps improve the security when a database of passwords or other important information is compromised.
If the salt is, for ...
5
votes
6answers
853 views
What's the big deal with brute force on hashes like MD5
I just spent some time reading http://stackoverflow.com/questions/2768248/is-md5-really-that-bad (I highly recommend!).
In it, it talks about hash collisions. Maybe I'm missing something here, but ...
5
votes
3answers
1k views
How can I use Perl to get a SHA1 hash of a file from the Windows command line?
I have a file called secure.txt in c:\temp. I want to run a Perl command from the command line to print the SHA1 hash of secure.txt. I'm using ActivePerl 5.8.2. I have not used Perl before, but ...