Searched defs:sha1 (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DUtility.java478 /* package for testing */ static int getSmallHashFromSha1(byte[] sha1) { argument
479 final int offset = sha1[19] & 0xf; // SHA1 is 20 bytes.
480 return ((sha1[offset] & 0x7f) << 24)
481 | ((sha1[offset + 1] & 0xff) << 16)
482 | ((sha1[offset + 2] & 0xff) << 8)
483 | ((sha1[offset + 3] & 0xff));

Completed in 61 milliseconds