Searched refs:toHex (Results 1 – 4 of 4) sorted by relevance
645 outBuffer.append(toHex((aChar >> 12) & 0xF)); in saveConvert()646 outBuffer.append(toHex((aChar >> 8) & 0xF)); in saveConvert()647 outBuffer.append(toHex((aChar >> 4) & 0xF)); in saveConvert()648 outBuffer.append(toHex( aChar & 0xF)); in saveConvert()672 uu[2] = toHex((c >> 12) & 0xf); in writeComments()673 uu[3] = toHex((c >> 8) & 0xf); in writeComments()674 uu[4] = toHex((c >> 4) & 0xf); in writeComments()675 uu[5] = toHex( c & 0xf); in writeComments()1139 private static char toHex(int nibble) { in toHex() method in Properties
379 debug.println( " sigfile " + toHex(expectedHash)); in verifyManifestHash()380 debug.println( " computed " + toHex(computedHash)); in verifyManifestHash()424 debug.println( " sigfile " + toHex(expectedHash)); in verifyManifestMainAttrs()425 debug.println( " computed " + toHex(computedHash)); in verifyManifestMainAttrs()504 debug.println(" expected " + toHex(expected)); in verifySection()505 debug.println(" computed " + toHex(computed)); in verifySection()518 debug.println(" re-computed " + toHex(computed)); in verifySection()583 static String toHex(byte[] data) { in toHex() method in SignatureFileVerifier
212 debug.println(" manifest " + toHex(manHash)); in verify()213 debug.println(" computed " + toHex(theHash)); in verify()239 static String toHex(byte[] data) { in toHex() method in ManifestEntryVerifier
141 private static char toHex(int nibble) { in toHex() method in Properties