Home | History | Annotate | Download | only in launcher3

Lines Matching full:checksum

126             if (key.checksum != checkKey(key)) {
132 // other types are wrapped in a checksum message
140 CRC32 checksum = new CRC32();
141 checksum.update(wrapper.payload);
142 if (wrapper.checksum != checksum.getValue()) {
193 CRC32 checksum = new CRC32();
194 checksum.update(key.type);
195 checksum.update((int) (key.id & 0xffff));
196 checksum.update((int) ((key.id >> 32) & 0xffff));
198 checksum.update(key.name.getBytes());
200 return checksum.getValue();