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 = MessageDigest.getInstance("sha1");
byte[] bytes = new byte[8192];
int byteCount;
int total = 0;
while ((byteCount = in.read(bytes)) > 0) {
total += byteCount;
digester.update(bytes, 0, byteCount);
Log.d("sha", "processed " + total);
}
and here is log:
10-31 13:59:53.790 D/sha ( 3386): processed 4931584
10-31 13:59:54.790 D/sha ( 3386): processed 5054464
10-31 13:59:55.780 D/sha ( 3386): processed 5177344
which is about 100k / sec, for me it is unacceptable.
I am using physical device (LG P990, 2.2.2). Can I get better results with Java, or I have to look into JNI implementation?
I have played with buffer size - no significant difference.
Traceview results
So it seems the bottleneck is in updating hash.

Research
That is interesting. When I have tried on 2.3.2 (SE Xperia), processing speed was about 12meg/sec. When I've tried on 2.2 (HTC Legend), the speed was even slower than at first device. Could it be so that something has been changed since 2.3?