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 same and correct, but the python time is 5653ms and the java time is 8623ms(53% slower). The result is similar every time and this is an important difference for me.

How to make the calculation in java faster?

Benchmarks:

Java:

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class BenchmarkSha256 {

  public static void main(String... args) throws NoSuchAlgorithmException {
    int size = 1024 * 1024;
    byte[] bytes = new byte[size];
    MessageDigest md = MessageDigest.getInstance("SHA-256");
    long startTime = System.nanoTime();
    for (int i = 0; i < 1024; i++)
      md.update(bytes, 0, size);
    long endTime = System.nanoTime();
    System.out.println(String.format("%1$064x", new java.math.BigInteger(1, md.digest())));
    System.out.println(String.format("%d ms", (endTime - startTime) / 1000000));
  }

}

Python:

#!/usr/bin/env python

import hashlib
import time

size = 1024 * 1024
bytes = bytearray(size)
md = hashlib.sha256()
startTime = time.time()
for i in range(0, 1024):
  md.update(bytes)
endTime = time.time()
print "%s\n%d ms" % (md.hexdigest(), (endTime - startTime) * 1000)

results:

~> java BenchmarkSha256
49bc20df15e412a64472421e13fe86ff1c5165e18b2afccf160d4dc19fe68a14
8623 ms

~> python BenchmarkSha256.py 
49bc20df15e412a64472421e13fe86ff1c5165e18b2afccf160d4dc19fe68a14
5653 ms

versions of java and python:

~> java -version
java version "1.6.0_26"
Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
Java HotSpot(TM) 64-Bit Server VM (build 20.1-b02, mixed mode)

~> python --version
Python 2.7
link|improve this question

1  
Have you excluded the costs of starting up the environment in both cases, or are you interested in whole program times as opposed to algorithm times? (Both are valid things to ask about, but they're very different metrics.) – Donal Fellows Oct 21 '11 at 8:31
possible duplicate of Java: Calculate SHA-256 hash of large file efficiently – Donal Fellows Oct 21 '11 at 8:36
@DonalFellows I am interested in the algorithm time only. The startup time is not so relevant at this scale. I tried to comment the "md.update(bytes, 0, size);" line in the java code and the time is 0.4s for the whole process except the calculation. Even with this time substracted, it is still slower. – Hristo Hristov Oct 21 '11 at 8:36
@DonalFellows I think this is not a duplicate, because in the referenced question/answer there is a lot of file I/O involved, here I am interested in the pure hash calculation. – Hristo Hristov Oct 21 '11 at 8:40
1  
I suspect the digest uses Java rather than an assembly library. You could use cryptopp.com/benchmarks.html from Java. – Peter Lawrey Oct 21 '11 at 8:45
feedback

5 Answers

Have you tried feeding in the data incrementally? You can use messageDigest.update() with the bytes and then get the final digest with messageDigest.digest()?

Allocating a 1GB array in memory is a fairly chunky operation. You may find that smaller incremental updates are faster in the end.

link|improve this answer
I have modified the java version to measure only the time for the calculation, the result is basically the same. I will try the incremental update variant and will post the results. – Hristo Hristov Oct 21 '11 at 8:54
Now the code is updated to do exactly this: incremental feeding and final digest, the issue is still the same: java is slower. – Hristo Hristov Oct 21 '11 at 10:24
We should probably give Java more of a chance and let it JIT optimize. Perhaps timing the code running a few hundred times times (in the same VM launch) will show some differences. Probably increasing the default heap size will help too (less GC pressure)? Is the Python implementation just a thin wrapper over a C library? – Jeff Foster Oct 21 '11 at 11:01
The code "md.update(...)" is already running 1024 times... I have tried increasing the heap size - no effect. I don't know about the python implementation, I just took the most straight-forward ways for doing it on both platforms. – Hristo Hristov Oct 21 '11 at 11:19
@JeffFoster Yes afaik python uses a thin wrapper around OpenSSL, so we're basically benchmarking the difference between OpenSSL's C implementation and Java (which presumably isn't implemented using JNI?) – Voo Oct 22 '11 at 10:12
show 1 more comment
feedback

Well, unless you are doing this to compare two command line programs, this is not the best test. Primarily, these numbers are being polluted by the vast differences in overhead associated with each program. VM start times will vary. Memory allocation speeds will vary.

To clean this up a bit, simply take two time samples before and after each actual MD5 calculation within the code itself.

This will actually measure performance of the hashing operation itself.

link|improve this answer
Thanks, I did that, now the java version measures the time only for the hash calculation. The question is updated and still valid. – Hristo Hristov Oct 21 '11 at 8:53
@Hristo: You've got to do the same for the Python code too, or it's still not fair (but not fair the other way). – Donal Fellows Oct 21 '11 at 9:43
@DonalFellows done! :) – Hristo Hristov Oct 21 '11 at 10:22
@allingeek I should note that your "answer" is actually a comment. This should be upvoted comment, but not an answer. – Hristo Hristov Oct 21 '11 at 11:00
@Hristo: Now you have valid figures, the question I said this was a dupe of tells you why. :-) – Donal Fellows Oct 21 '11 at 12:13
show 1 more comment
feedback

I think that java is just slow by nature. This question may be relevant to you Java: Calculate SHA-256 hash of large file efficiently

link|improve this answer
But I am asking how to do this faster, so java is just slow is not an answer :) – Hristo Hristov Oct 21 '11 at 10:21
To be fair, one should say that the python example runs native code (presumably optimized C) whereas the Java version calls a Java implementation which is just that... Java. One reason for "Java is slow" is that you compare different things. Java does a lot of things that e.g. C simply does not do, such as exceptions. Obviously, this extra functionality is not "free" (but if you did it in C, it would be just as slow). Unluckily, in serious number crunching such as here, it hurts. Which also leads to the answer for "how to make it faster", call a native function written in C. – Damon Oct 21 '11 at 12:51
@Damon All this can be said for python too, if it was slow. But, it is fast. Maybe by calling a native function under the hood. I need a simple and easy way to do the same in java. – Hristo Hristov Oct 28 '11 at 13:07
feedback

While you might be able to improve the performance of the Java tool a bit, the Python implementation will usually be faster because it is likely delegating to assembled libraries which run with significantly better performance.

If your project does not have any other significant dependencies on Java, I'd recommend going with the Python implementation.

link|improve this answer
The project is java only. The python implementation is just for demonstration. The question is, how to calculate sha256 with java faster? – Hristo Hristov Oct 21 '11 at 10:25
feedback
up vote 0 down vote accepted

There is no way doing it with the standard JRE. External library should be used with faster, maybe native implementation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.