Merge "squeeze a few more bits of randomness into /dev/random" into gingerbread

This commit is contained in:
Nick Kralevich
2010-09-27 15:23:45 -07:00
committed by Android (Google) Code Review

View File

@ -139,6 +139,7 @@ public class EntropyService extends Binder {
out.println(SystemProperties.get("ro.bootloader"));
out.println(SystemProperties.get("ro.hardware"));
out.println(SystemProperties.get("ro.revision"));
out.println(new Object().hashCode());
out.println(System.currentTimeMillis());
out.println(System.nanoTime());
} catch (IOException e) {