Android Utililty Methods MessageDigest Update

List of utility methods to do MessageDigest Update

Description

The list of methods to do MessageDigest Update are organized into topic(s).

Method

voidwriteIntLittleEndian(MessageDigest md, int value)
write Int Little Endian
int a = value & 0xFF;
int b = (value >> 8) & 0xFF;
int c = (value >> 16) & 0xFF;
int d = (value >> 24) & 0xFF;
md.update((byte) a);
md.update((byte) b);
md.update((byte) c);
md.update((byte) d);
...