List of utility methods to do MessageDigest Update
void | writeIntLittleEndian(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); ... |